FIELD_INFO
This structure describes a local variable, parameter, or other field.
typedef struct _tagFieldInfo {
FIELD_INFO_FIELDS dwFields;
BSTR bstrFullName;
BSTR bstrName;
BSTR bstrType;
FIELD_MODIFIERS dwModifiers;
} FIELD_INFO;
public struct FIELD_INFO {
public uint dwFields;
public string bstrFullName;
public string bstrName;
public string bstrType;
public uint dwModifiers;
};
Members
dwFields
A combination of flags from the FIELD_INFO_FIELDS enumeration that specifies which members are filled in.bstrFullName
The full name of the field.bstrName
The short name of the field.bstrType
The type of the field.dwModifiers
A combination of flags from the FIELD_MODIFIERS enumeration that describes the field.
Remarks
This structure is passed to the IDebugField::GetInfo method where it is filled in.
Requirements
Header: sh.h
Namespace: Microsoft.VisualStudio.Debugger.Interop
Assembly: Microsoft.VisualStudio.Debugger.Interop.dll