public FactoryToChoiceBinder <TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TContract> WithFactoryArguments <TFactoryParam1, TFactoryParam2, TFactoryParam3, TFactoryParam4, TFactoryParam5, TFactoryParam6>(
     TFactoryParam1 param1, TFactoryParam2 param2, TFactoryParam3 param3, TFactoryParam4 param4, TFactoryParam5 param5, TFactoryParam6 param6)
 {
     FactoryBindInfo.Arguments = InjectUtil.CreateArgListExplicit(param1, param2, param3, param4, param5, param6);
     return(this);
 }
 public FactoryToChoiceBinder <TContract> WithFactoryArguments <TParam1, TParam2, TParam3, TParam4, TParam5>(
     TParam1 param1, TParam2 param2, TParam3 param3, TParam4 param4, TParam5 param5)
 {
     FactoryBindInfo.Arguments = InjectUtil.CreateArgListExplicit(param1, param2, param3, param4, param5);
     return(this);
 }
Example #3
0
 void InstallFoo(DiContainer subContainer, string value)
 {
     subContainer.Bind <Foo>().AsSingle().WithArgumentsExplicit(
         InjectUtil.CreateArgListExplicit(value));
 }
 // We use generics instead of params object[] so that we preserve type info
 // So that you can for example pass in a variable that is null and the type info will
 // still be used to map null on to the correct field
 public FactoryToChoiceBinder <TContract> WithFactoryArguments <T>(T param)
 {
     FactoryBindInfo.Arguments = InjectUtil.CreateArgListExplicit(param);
     return(this);
 }
Example #5
0
 public override void InstallBindings()
 {
     Container.Bind <Foo>().AsTransient().WithArgumentsExplicit(
         InjectUtil.CreateArgListExplicit(_value));
 }