Update Project
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
namespace Zenject
|
||||
{
|
||||
[NoReflectionBaking]
|
||||
public class NonLazyBinder : IfNotBoundBinder
|
||||
{
|
||||
public NonLazyBinder(BindInfo bindInfo)
|
||||
: base(bindInfo)
|
||||
{
|
||||
}
|
||||
|
||||
public IfNotBoundBinder NonLazy()
|
||||
{
|
||||
BindInfo.NonLazy = true;
|
||||
return this;
|
||||
}
|
||||
|
||||
public IfNotBoundBinder Lazy()
|
||||
{
|
||||
BindInfo.NonLazy = false;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user