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


C# TypeDefinition.AddProperty方法代码示例

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


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

示例1: Weave

        public virtual void Weave(TypeDefinition item)
        {
            if (item.Interfaces.Contains(_hostType))
                return;

            item.Interfaces.Add(_hostType);
            item.AddProperty("MethodBodyReplacementProvider", typeof (IMethodReplacementProvider));
            item.AddProperty("MethodCallReplacementProvider", typeof (IMethodReplacementProvider));
        }
开发者ID:svgorbunov,项目名称:ScrollsModLoader,代码行数:9,代码来源:ImplementMethodReplacementHost.cs

示例2: Weave

        public override void Weave(TypeDefinition item)
        {
            base.Weave(item);

            // Implement IModifiableType
            if (item.Interfaces.Contains(_modifiableInterfaceType))
                return;

            item.Interfaces.Add(_modifiableInterfaceType);
            item.AddProperty("IsInterceptionDisabled", typeof(bool));
            item.AddProperty("AroundInvokeProvider", typeof(IAroundInvokeProvider));
        }
开发者ID:zxl359592450,项目名称:linfu,代码行数:12,代码来源:ImplementModifiableType.cs

示例3: Weave

        public void Weave(TypeDefinition type)
        {
            // Implement IActivatorHost only once
            if (type.Interfaces.Contains(_hostInterfaceType))
                return;

            type.AddProperty("Activator", _activatorPropertyType);

            if (!type.Interfaces.Contains(_hostInterfaceType))
                type.Interfaces.Add(_hostInterfaceType);
        }
开发者ID:svgorbunov,项目名称:ScrollsModLoader,代码行数:11,代码来源:ImplementActivatorHostWeaver.cs

示例4: Construct

        /// <summary>
        /// Constructs a type that implements the
        /// <see cref="IProxy"/> interface.
        /// </summary>
        /// <param name="module">The module that will hold the target type.</param>
        /// <param name="targetType">The type that will implement the <see cref="IProxy"/> interface.</param>
        public void Construct(ModuleDefinition module, TypeDefinition targetType)
        {
            TypeReference proxyInterfaceType = module.Import(typeof (IProxy));
            TypeReference interceptorType = module.Import(typeof (IInterceptor));

            // Implement the IProxy interface only once
            if (targetType.Interfaces.Contains(proxyInterfaceType))
                return;

            targetType.Interfaces.Add(proxyInterfaceType);
            targetType.AddProperty("Interceptor", interceptorType);
        }
开发者ID:svgorbunov,项目名称:ScrollsModLoader,代码行数:18,代码来源:ProxyImplementor.cs


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