ModuleBuilder.ResolveSignature(Int32) Method

Definition

Returns the signature blob identified by a metadata token.

public:
 override cli::array <System::Byte> ^ ResolveSignature(int metadataToken);
public override byte[] ResolveSignature (int metadataToken);
override this.ResolveSignature : int -> byte[]
Public Overrides Function ResolveSignature (metadataToken As Integer) As Byte()

Parameters

metadataToken
Int32

A metadata token that identifies a signature in the module.

Returns

Byte[]

An array of bytes representing the signature blob.

Exceptions

metadataToken is not a valid MemberRef, MethodDef, TypeSpec, signature, or FieldDef token in the scope of the current module.

metadataToken is not a valid token in the scope of the current module.

Remarks

Note

Information about metadata tokens and signatures can be found in 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