本文整理汇总了C#中IInjector.CreateChild方法的典型用法代码示例。如果您正苦于以下问题:C# IInjector.CreateChild方法的具体用法?C# IInjector.CreateChild怎么用?C# IInjector.CreateChild使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类IInjector
的用法示例。
在下文中一共展示了IInjector.CreateChild方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Extend
/*============================================================================*/
/* Public Functions */
/*============================================================================*/
public void Extend(IContext context)
{
context.BeforeInitializing(BeforeInitializing);
context.BeforeDestroying(BeforeDestroying);
context.WhenDestroying(WhenDestroying);
_injector = context.injector;
_injector.Map(typeof(IViewProcessorFactory)).ToValue(new ViewProcessorFactory(_injector.CreateChild()));
_injector.Map(typeof(IViewProcessorMap)).ToSingleton(typeof(ViewProcessorMap));
}
示例2: CommandExecutor
/*============================================================================*/
/* Constructor */
/*============================================================================*/
/// <summary>
/// Creates a Command Executor
/// </summary>
/// <param name="injector">The Injector to use. A child injector will be created from it.</param>
/// <param name="removeMapping">removeMapping Remove mapping handler (optional)</param>
/// <param name="handleResult">handleResult Result handler (optional)</param>
public CommandExecutor (IInjector injector, RemoveMappingDelegate removeMapping = null, HandleResultDelegate handleResult = null)
{
_injector = injector.CreateChild();
_removeMapping = removeMapping;
_handleResult = handleResult;
}