ModuleBuilder.SetCustomAttribute Method (System.Reflection.Emit) (original) (raw)

Definition

Namespace:

System.Reflection.Emit

Assemblies:

netstandard.dll, System.Reflection.Emit.dll

Assembly:

System.Reflection.Emit.dll

Assembly:

mscorlib.dll

Assembly:

netstandard.dll

Package:

System.Reflection.Emit v4.7.0

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Applies a custom attribute to this module.

Overloads

SetCustomAttribute(CustomAttributeBuilder)

Source:

ModuleBuilder.cs

Source:

ModuleBuilder.cs

Source:

ModuleBuilder.cs

Source:

ModuleBuilder.cs

Applies a custom attribute to this module by using a custom attribute builder.

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)

Parameters

customBuilder

CustomAttributeBuilder

An instance of a helper class that specifies the custom attribute to apply.

Exceptions

Applies to

SetCustomAttribute(ConstructorInfo, Byte[])

Source:

ModuleBuilder.cs

Source:

ModuleBuilder.cs

Source:

ModuleBuilder.cs

Source:

ModuleBuilder.cs

Applies a custom attribute to this module by using a specified binary large object (BLOB) that represents the attribute.

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

Parameters

binaryAttribute

Byte[]

A byte BLOB representing the attribute.

Attributes

Exceptions

con or binaryAttribute is null.

Remarks

For more information about how to format binaryAttribute, see the Common Language Infrastructure (CLI) documentation, especially "Partition II: Metadata Definition and Semantics". For more information, see ECMA 335 Common Language Infrastructure (CLI).

Applies to