Edit

Share via


NAME_MATCH

Selects the case option for matching names.

Syntax

public enum NameMatchOptions { 
   nmNone            = 0,
   nmCaseSensitive   = 1,
   nmCaseInsensitive = 2
}

Fields

nmNone
No options are specified.

nmCaseSensitive
Indicates that names to be matched are case-sensitive.

nmCaseInsensitive
Indicates that names to be matched are not case-sensitive.

Remarks

Passed as an argument to the following methods:

Requirements

Header: sh.h

Namespace: Microsoft.VisualStudio.Debugger.Interop

Assembly: Microsoft.VisualStudio.Debugger.Interop.dll

See also