METADATA_ADDRESS_PARAM

This structure represents a parameter of a method or function.

Syntax

public struct METADATA_ADDRESS_PARAM {
   public int  tokMethod;
   public int  tokParam;
   public uint dwIndex;
}

Members

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

See also