Module.ResolveString(Int32) Method

Definition

Returns the string identified by the specified metadata token.

public:
 virtual System::String ^ ResolveString(int metadataToken);
public:
 System::String ^ ResolveString(int metadataToken);
public virtual string ResolveString (int metadataToken);
public string ResolveString (int metadataToken);
abstract member ResolveString : int -> string
override this.ResolveString : int -> string
member this.ResolveString : int -> string
Public Overridable Function ResolveString (metadataToken As Integer) As String
Public Function ResolveString (metadataToken As Integer) As String

Parameters

metadataToken
Int32

A metadata token that identifies a string in the string heap of the module.

Returns

A String containing a string value from the metadata string heap.

Exceptions

metadataToken is not a token for a string 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 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