Skip to content

Latest commit

 

History

History
64 lines (53 loc) · 1.28 KB

constructor-enum.md

File metadata and controls

64 lines (53 loc) · 1.28 KB
description title ms.date ms.topic f1_keywords helpviewer_keywords author ms.author manager ms.subservice dev_langs
Selects different types of constructors.
CONSTRUCTOR_ENUM
11/04/2016
reference
CONSTRUCTOR_ENUM
CONSTRUCTOR_ENUM enumeration
maiak
maiak
mijacobs
debug-diagnostics
CPP
CSharp

CONSTRUCTOR_ENUM

Selects different types of constructors.

Syntax

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

Fields

crAll
Selects all constructors.

crNonStatic
Selects non-static constructors.

crStatic
Selects static constructors.

Remarks

Passed as an argument to the EnumConstructors method.

Requirements

Header: sh.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also