GenericTypeParameterBuilder.SetCustomAttribute 메서드

정의

사용자 지정 특성을 설정합니다.

오버로드

SetCustomAttribute(CustomAttributeBuilder)

사용자 지정 특성 작성기를 사용하여 사용자 지정 특성을 설정합니다.

SetCustomAttribute(ConstructorInfo, Byte[])

지정된 사용자 지정 특성 blob을 사용하여 사용자 지정 특성을 설정합니다.

SetCustomAttribute(CustomAttributeBuilder)

Source:
GenericTypeParameterBuilder.cs
Source:
GenericTypeParameterBuilder.cs
Source:
GenericTypeParameterBuilder.cs

사용자 지정 특성 작성기를 사용하여 사용자 지정 특성을 설정합니다.

public:
 void SetCustomAttribute(System::Reflection::Emit::CustomAttributeBuilder ^ customBuilder);
public void SetCustomAttribute (System.Reflection.Emit.CustomAttributeBuilder customBuilder);
member this.SetCustomAttribute : System.Reflection.Emit.CustomAttributeBuilder -> unit
Public Sub SetCustomAttribute (customBuilder As CustomAttributeBuilder)

매개 변수

customBuilder
CustomAttributeBuilder

사용자 지정 특성을 정의하는 도우미 클래스의 인스턴스입니다.

예외

customBuildernull입니다.

적용 대상

SetCustomAttribute(ConstructorInfo, Byte[])

Source:
GenericTypeParameterBuilder.cs
Source:
GenericTypeParameterBuilder.cs
Source:
GenericTypeParameterBuilder.cs

지정된 사용자 지정 특성 blob을 사용하여 사용자 지정 특성을 설정합니다.

public:
 void SetCustomAttribute(System::Reflection::ConstructorInfo ^ con, cli::array <System::Byte> ^ binaryAttribute);
public void SetCustomAttribute (System.Reflection.ConstructorInfo con, byte[] binaryAttribute);
member this.SetCustomAttribute : System.Reflection.ConstructorInfo * byte[] -> unit
Public Sub SetCustomAttribute (con As ConstructorInfo, binaryAttribute As Byte())

매개 변수

con
ConstructorInfo

사용자 지정 특성에 대한 생성자입니다.

binaryAttribute
Byte[]

특성을 나타내는 바이트 blob입니다.

예외

con이(가) null인 경우

또는

binaryAttribute가 null 참조인 경우

설명

형식 binaryAttribute을 지정하는 방법에 대한 자세한 내용은 CLI(공용 언어 인프라) 사양의 파티션 II의 메타데이터 사양을 참조하세요.

적용 대상