MetadataBuilder.AddCustomAttribute 方法

定义

添加自定义属性。

public:
 System::Reflection::Metadata::CustomAttributeHandle AddCustomAttribute(System::Reflection::Metadata::EntityHandle parent, System::Reflection::Metadata::EntityHandle constructor, System::Reflection::Metadata::BlobHandle value);
public System.Reflection.Metadata.CustomAttributeHandle AddCustomAttribute (System.Reflection.Metadata.EntityHandle parent, System.Reflection.Metadata.EntityHandle constructor, System.Reflection.Metadata.BlobHandle value);
member this.AddCustomAttribute : System.Reflection.Metadata.EntityHandle * System.Reflection.Metadata.EntityHandle * System.Reflection.Metadata.BlobHandle -> System.Reflection.Metadata.CustomAttributeHandle
Public Function AddCustomAttribute (parent As EntityHandle, constructor As EntityHandle, value As BlobHandle) As CustomAttributeHandle

参数

constructor
EntityHandle

自定义属性构造函数:MethodDefinitionHandleMemberReferenceHandle

value
BlobHandle

自定义属性值 blob。

返回

已添加的自定义属性的句柄。

例外

parent 没有预期的句柄类型。

注解

可以按任意顺序添加条目。 表在序列化时自动排序。

适用于