ModuleBuilder.SetCustomAttribute メソッド

定義

このモジュールにカスタム属性を適用します。

オーバーロード

名前 説明
SetCustomAttribute(CustomAttributeBuilder)

カスタム属性ビルダーを使用して、このモジュールにカスタム属性を適用します。

SetCustomAttribute(ConstructorInfo, Byte[])

属性を表す指定されたバイナリ ラージ オブジェクト (BLOB) を使用して、このモジュールにカスタム属性を適用します。

SetCustomAttribute(CustomAttributeBuilder)

カスタム属性ビルダーを使用して、このモジュールにカスタム属性を適用します。

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[])

属性を表す指定されたバイナリ ラージ オブジェクト (BLOB) を使用して、このモジュールにカスタム属性を適用します。

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())

パラメーター

con
ConstructorInfo

カスタム属性のコンストラクター。

binaryAttribute
Byte[]

属性を表すバイト BLOB。

属性

例外

con または binaryAttributenull

注釈

binaryAttributeの書式を設定する方法の詳細については、共通言語インフラストラクチャ (CLI) のドキュメント(特にパーティション II: メタデータ定義とセマンティクス)を参照してください。 詳細については、 ECMA 335 共通言語インフラストラクチャ (CLI) を参照してください。

適用対象