Freigeben über


CONSTRUCTOR_ENUM

Wählt verschiedene Arten von Konstruktoren aus.

typedef enum ConstructorMatchOptions { 
   crAll       = 0,
   crNonStatic = 1,
   crStatic    = 2
} CONSTRUCTOR_ENUM;
public enum ConstructorMatchOptions { 
   crAll       = 0,
   crNonStatic = 1,
   crStatic    = 2
};

Mitglieder

  • crAll
    Wählt alle Konstruktoren aus.

  • crNonStatic
    Wählt einen nicht statischen Konstruktoren aus.

  • crStatic
    Wählt statische Konstruktoren aus.

Hinweise

Übergabe als Argument an die IDebugClassField::EnumConstructors-Methode.

Anforderungen

Header: sh.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

Siehe auch

Referenz

Enumerationen (Visual Studio-Debugging)

IDebugCanStopEvent2::GetReason