Udostępnij za pośrednictwem


PropertyBuilder.SetCustomAttribute Metoda

Definicja

Ustawia atrybut niestandardowy.

Przeciążenia

SetCustomAttribute(CustomAttributeBuilder)

Ustaw atrybut niestandardowy przy użyciu konstruktora atrybutów niestandardowych.

SetCustomAttribute(ConstructorInfo, Byte[])

Ustaw atrybut niestandardowy przy użyciu określonego obiektu blob atrybutu niestandardowego.

SetCustomAttribute(CustomAttributeBuilder)

Źródło:
PropertyBuilder.cs
Źródło:
PropertyBuilder.cs
Źródło:
PropertyBuilder.cs

Ustaw atrybut niestandardowy przy użyciu konstruktora atrybutów niestandardowych.

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)

Parametry

customBuilder
CustomAttributeBuilder

Wystąpienie klasy pomocniczej do zdefiniowania atrybutu niestandardowego.

Wyjątki

customBuilder to null.

w przypadku CreateType() wywołania typu otaczającego.

Dotyczy

SetCustomAttribute(ConstructorInfo, Byte[])

Źródło:
PropertyBuilder.cs
Źródło:
PropertyBuilder.cs
Źródło:
PropertyBuilder.cs

Ustaw atrybut niestandardowy przy użyciu określonego obiektu blob atrybutu niestandardowego.

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

Parametry

con
ConstructorInfo

Konstruktor atrybutu niestandardowego.

binaryAttribute
Byte[]

Bajtowy obiekt blob reprezentujący atrybuty.

Atrybuty

Wyjątki

con lub binaryAttribute to null.

CreateType() został wywołany w typie otaczającym.

Uwagi

Aby uzyskać informacje na temat formatowania binaryAttribute, zobacz specyfikację metadanych w partycji II infrastruktury ECMA-335 Common Language Infrastructure (CLI).

Dotyczy