本文整理汇总了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));
}
示例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));
}
示例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);
}
示例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);
}