当前位置: 首页>>代码示例>>C#>>正文


C# ILifetimeScope.resolve方法代码示例

本文整理汇总了C#中ILifetimeScope.resolve方法的典型用法代码示例。如果您正苦于以下问题:C# ILifetimeScope.resolve方法的具体用法?C# ILifetimeScope.resolve怎么用?C# ILifetimeScope.resolve使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ILifetimeScope的用法示例。


在下文中一共展示了ILifetimeScope.resolve方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: callStaticMethod

        static object callStaticMethod(ILifetimeScope lifetimeScope, MethodInfo concreteMethod)
        {
            Debug.Assert(!concreteMethod.IsGenericMethodDefinition);
            Debug.Assert(concreteMethod.IsStatic);

            var parameters = concreteMethod.GetParameters();
            var arguments = new object[parameters.Length];
            foreach (var p in parameters.indices())
                arguments[p] = lifetimeScope.resolve(parameters[p].ParameterType);

            return concreteMethod.Invoke(null, arguments);
        }
开发者ID:pragmatrix,项目名称:Konstruktor2,代码行数:12,代码来源:KonstruktorBuild.cs

示例2: instantiateByReflectionConstructor

        object instantiateByReflectionConstructor(ILifetimeScope lifetimeScope, Type t)
        {
            var constructors = t.GetConstructors();
            if (constructors.Length == 0)
                throw new ResolveException("failed to instantiate type {0}: no public constructor", t);

            var constructor = selectPreferredConstructor(constructors);
            var parameters = constructor.GetParameters();

            var resolvedObjects = new object[parameters.Length];

            foreach (var p in parameters.indices())
            {
                var obj = lifetimeScope.resolve(parameters[p].ParameterType);
                resolvedObjects[p] = obj;
            }

            var instance = constructor.Invoke(resolvedObjects);

            lifetimeScope.Debug("inst {2,8:X}: {0} => {1}".fmt(t.Name, instance, (uint)instance.GetHashCode()));

            return instance;
        }
开发者ID:pragmatrix,项目名称:Konstruktor2,代码行数:23,代码来源:KonstruktorInstantiate.cs

示例3: buildFromInterface

        object buildFromInterface(ILifetimeScope lifetimeScope, Type t)
        {
            Debug.Assert(t.IsInterface);
            var implementation = tryGetImplementationForInterface(t);
            if (implementation != null)
                return lifetimeScope.resolve(implementation);

            if (t.IsGenericType)
                return buildFromGenericInterface(lifetimeScope, t);

            throw new ResolveException("failed to resolve type {0}: failed to resolve interface", t);
        }
开发者ID:pragmatrix,项目名称:Konstruktor2,代码行数:12,代码来源:KonstruktorBuild.cs

示例4: buildFromGenericInterface

        object buildFromGenericInterface(ILifetimeScope lifetimeScope, Type genericInterface)
        {
            Debug.Assert(genericInterface.IsInterface && genericInterface.IsGenericType && !genericInterface.IsGenericTypeDefinition);
            var def = genericInterface.GetGenericTypeDefinition();
            var implementation = tryGetImplementationForInterface(def);
            if (implementation == null)
                return buildFromGenericByUsingAGenerator(lifetimeScope, genericInterface);

            Debug.Assert(implementation.GetGenericArguments().Length == genericInterface.GetGenericArguments().Length);

            var implementationType = implementation.MakeGenericType(genericInterface.GetGenericArguments());

            return lifetimeScope.resolve(implementationType);
        }
开发者ID:pragmatrix,项目名称:Konstruktor2,代码行数:14,代码来源:KonstruktorBuild.cs


注:本文中的ILifetimeScope.resolve方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。