METADATA_ADDRESS_PARAM
This structure represents a parameter of a method or function.
typedef struct _tagMETADATA_ADDRESS_PARAM {
_mdToken tokMethod;
_mdToken tokParam;
DWORD dwIndex;
} METADATA_ADDRESS_PARAM;
public struct METADATA_ADDRESS_PARAM {
public int tokMethod;
public int tokParam;
public uint dwIndex;
}
Terms
tokMethod
The ID of the method the parameter is part of.tokParam
The ID of the parameter.dwIndex
The index of the parameter in a list of parameters.
Remarks
This structure is part of the union in the DEBUG_ADDRESS_UNION structure when the dwKind field of the DEBUG_ADDRESS_UNION structure is set to ADDRESS_KIND_PARAM (a value from the ADDRESS_KIND enumeration).
Requirements
Header: sh.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll