Update Project
This commit is contained in:
+30
@@ -0,0 +1,30 @@
|
||||
using System.Collections.Generic;
|
||||
using System;
|
||||
using ModestTree;
|
||||
|
||||
namespace Zenject
|
||||
{
|
||||
[NoReflectionBaking]
|
||||
public class SubContainerCreatorByInstance : ISubContainerCreator
|
||||
{
|
||||
readonly DiContainer _subcontainer;
|
||||
|
||||
public SubContainerCreatorByInstance(DiContainer subcontainer)
|
||||
{
|
||||
_subcontainer = subcontainer;
|
||||
}
|
||||
|
||||
public DiContainer CreateSubContainer(List<TypeValuePair> args, InjectContext context, out Action injectAction)
|
||||
{
|
||||
Assert.That(args.IsEmpty());
|
||||
|
||||
injectAction = null;
|
||||
|
||||
// It is assumed here that the subcontainer has already had ResolveRoots called elsewhere
|
||||
// Since most likely you are adding a subcontainer that is already in a context or
|
||||
// something rather than directly using DiContainer.CreateSubContainer
|
||||
return _subcontainer;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user