Module.ResolveSignature(Int32) Method

Definition

Returns the signature blob identified by a metadata token.

public:
 virtual cli::array <System::Byte> ^ ResolveSignature(int metadataToken);
public:
 cli::array <System::Byte> ^ ResolveSignature(int metadataToken);
public virtual byte[] ResolveSignature (int metadataToken);
public byte[] ResolveSignature (int metadataToken);
abstract member ResolveSignature : int -> byte[]
override this.ResolveSignature : int -> byte[]
member this.ResolveSignature : int -> byte[]
Public Overridable Function ResolveSignature (metadataToken As Integer) As Byte()
Public 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