Partager via


FIELD_INFORMATION

Cette structure décrit une variable locale, le paramètre, ou un autre champ.

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;
};

Membres

  • dwFields
    Une combinaison des indicateurs d'énumération de FIELD_INFORMATION_FIELDS qui spécifie quels membres sont terminés.

  • bstrFullName
    le nom complet du champ.

  • bstrName
    le nom court du champ.

  • bstrType
    Type du champ.

  • dwModifiers
    Une combinaison des indicateurs d'énumération de FIELD_MODIFIERS qui décrit le champ.

Notes

Cette structure est passée à la méthode d' IDebugField : : GetInfo où elle est terminée.

Configuration requise

en-tête : sh.h

l'espace de noms : Microsoft.VisualStudio.Debugger.Interop

Assembly : Microsoft.VisualStudio.Debugger.Interop.dll

Voir aussi

Référence

Structures et unions

FIELD_INFORMATION_FIELDS

FIELD_MODIFIERS

IDebugField : : GetInfo