本文整理汇总了C#中Castle.MicroKernel.Context.CreationContext.Resolve方法的典型用法代码示例。如果您正苦于以下问题:C# CreationContext.Resolve方法的具体用法?C# CreationContext.Resolve怎么用?C# CreationContext.Resolve使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Castle.MicroKernel.Context.CreationContext
的用法示例。
在下文中一共展示了CreationContext.Resolve方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Resolve
/// <summary>
/// Try to resolve the dependency by checking the parameters in
/// the model or checking the Kernel for the requested service.
/// </summary>
/// <remarks>
/// The dependency resolver has the following precedence order:
/// <list type = "bullet">
/// <item>
/// <description>The dependency is checked within the
/// <see cref = "CreationContext" />
/// </description>
/// </item>
/// <item>
/// <description>The dependency is checked within the
/// <see cref = "IHandler" />
/// instance for the component</description>
/// </item>
/// <item>
/// <description>The dependency is checked within the registered
/// <see cref = "ISubDependencyResolver" />
/// s</description>
/// </item>
/// <item>
/// <description>Finally the resolver tries the normal flow
/// which is using the configuration
/// or other component to satisfy the dependency</description>
/// </item>
/// </list>
/// </remarks>
/// <param name = "context">Creation context, which is a resolver itself</param>
/// <param name = "contextHandlerResolver">Parent resolver</param>
/// <param name = "model">Model of the component that is requesting the dependency</param>
/// <param name = "dependency">The dependency model</param>
/// <returns>The dependency resolved value or null</returns>
public object Resolve(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
{
object value = null;
bool resolved = false;
// 1 - check for the dependency on CreationContext, if present
if (context != null && context.CanResolve(context, contextHandlerResolver, model, dependency))
{
value = context.Resolve(context, contextHandlerResolver, model, dependency);
resolved = true;
}
// 2 - check with the model's handler, if not the same as the parent resolver
IHandler handler = kernel.GetHandler(model.Name);
if (!resolved && handler != contextHandlerResolver && handler.CanResolve(context, contextHandlerResolver, model, dependency))
{
value = handler.Resolve(context, contextHandlerResolver, model, dependency);
resolved = true;
}
// 3 - check within parent resolver, if present
if (!resolved && contextHandlerResolver != null && contextHandlerResolver.CanResolve(context, contextHandlerResolver, model, dependency))
{
value = contextHandlerResolver.Resolve(context, contextHandlerResolver, model, dependency);
resolved = true;
}
// 4 - check within subresolvers
if (!resolved && subResolvers.Count > 0)
{
for (int index = 0; index < subResolvers.Count; index++)
{
ISubDependencyResolver subResolver = subResolvers[index];
if (subResolver.CanResolve(context, contextHandlerResolver, model, dependency))
{
value = subResolver.Resolve(context, contextHandlerResolver, model, dependency);
resolved = true;
break;
}
}
}
// 5 - normal flow, checking against the kernel
if (!resolved)
{
if (dependency.DependencyType == DependencyType.Service ||
dependency.DependencyType == DependencyType.ServiceOverride)
{
value = ResolveServiceDependency(context, model, dependency);
}
else
{
value = ResolveParameterDependency(context, model, dependency);
}
}
if (value == null)
{
if (dependency.HasDefaultValue)
{
//.........这里部分代码省略.........
示例2: ResolveCore
private object ResolveCore(CreationContext context, ISubDependencyResolver contextHandlerResolver, ComponentModel model, DependencyModel dependency)
{
// 1 - check for the dependency on CreationContext, if present
if (CanResolveFromContext(context, contextHandlerResolver, model, dependency))
{
return context.Resolve(context, contextHandlerResolver, model, dependency);
}
// 2 - check with the model's handler, if not the same as the parent resolver
var handler = kernel.GetHandler(model.Name);
if (handler != contextHandlerResolver && handler.CanResolve(context, contextHandlerResolver, model, dependency))
{
return handler.Resolve(context, contextHandlerResolver, model, dependency);
}
// 3 - check within parent resolver, if present
if (CanResolveFromContextHandlerResolver(context, contextHandlerResolver, model, dependency))
{
return contextHandlerResolver.Resolve(context, contextHandlerResolver, model, dependency);
}
// 4 - check within subresolvers
if (subResolvers.Count > 0)
{
for (var index = 0; index < subResolvers.Count; index++)
{
var subResolver = subResolvers[index];
if (subResolver.CanResolve(context, contextHandlerResolver, model, dependency))
{
return subResolver.Resolve(context, contextHandlerResolver, model, dependency);
}
}
}
// 5 - normal flow, checking against the kernel
return ResolveFromKernel(context, model, dependency);
}