本文整理汇总了C#中ILifetimeScope.own方法的典型用法代码示例。如果您正苦于以下问题:C# ILifetimeScope.own方法的具体用法?C# ILifetimeScope.own怎么用?C# ILifetimeScope.own使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ILifetimeScope
的用法示例。
在下文中一共展示了ILifetimeScope.own方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: buildFromGenericByUsingAGenerator
object buildFromGenericByUsingAGenerator(ILifetimeScope lifetimeScope, Type genericInterface)
{
Debug.Assert(genericInterface.IsInterface && genericInterface.IsGenericType && !genericInterface.IsGenericTypeDefinition);
var def = genericInterface.GetGenericTypeDefinition();
var factoryMethod = tryResolveFactoryMethod(def);
if (factoryMethod == null)
throw new ResolveException("failed to resolve generic type {0}: failed to resolve interface", genericInterface);
var arguments = genericInterface.GetGenericArguments();
var methodTypeArguments = factoryMethod.GetGenericArguments();
if (arguments.Length != methodTypeArguments.Length)
throw new ResolveException("failed to find generators method for type {0}, number of type arguments are not matching", genericInterface);
var concreteMethod = factoryMethod.MakeGenericMethod(arguments);
var generated_ = callStaticMethod(lifetimeScope, concreteMethod);
// a generated object must be owned by the scope!
lifetimeScope.own(generated_);
lifetimeScope.Debug("gent {2,8:X}: {0} => {1}".fmt(genericInterface.Name, generated_, generated_ == null ? 0 : (uint)generated_.GetHashCode()));
return generated_;
}
示例2: instantiate
object instantiate(ILifetimeScope lifetimeScope, Type t)
{
if (t.IsValueType || Type.GetTypeCode(t) == TypeCode.String)
throw new ResolveException("failed to instantiate type {0}: no reference or string type", t);
if (t.IsGenericType)
{
var typeDef = t.GetGenericTypeDefinition();
if (typeDef == typeof(Func<>))
return Func1Factory.instantiate(t, lifetimeScope);
if (typeDef == typeof(Func<,>))
return Func2Factory.instantiate(t, lifetimeScope);
}
var instance = instantiateByReflectionConstructor(lifetimeScope, t);
lifetimeScope.own(instance);
return instance;
}
示例3: buildByExplicitGenerator
static object buildByExplicitGenerator(Func<ILifetimeScope, object> explicitGenerator, ILifetimeScope lifetimeScope)
{
var instance = explicitGenerator(lifetimeScope);
lifetimeScope.own(instance);
return instance;
}