DebuggerBrowsableAttribute Class
Assembly: mscorlib (in mscorlib.dll)
'Declaration <ComVisibleAttribute(True)> _ <AttributeUsageAttribute(AttributeTargets.Property Or AttributeTargets.Field, AllowMultiple:=False)> _ Public NotInheritable Class DebuggerBrowsableAttribute Inherits Attribute 'Usage Dim instance As DebuggerBrowsableAttribute
/** @attribute ComVisibleAttribute(true) */ /** @attribute AttributeUsageAttribute(AttributeTargets.Property|AttributeTargets.Field, AllowMultiple=false) */ public final class DebuggerBrowsableAttribute extends Attribute
ComVisibleAttribute(true) AttributeUsageAttribute(AttributeTargets.Property|AttributeTargets.Field, AllowMultiple=false) public final class DebuggerBrowsableAttribute extends Attribute
Note |
|---|
| In .NET Framework version 2.0, the DebuggerBrowsableAttribute class is not supported by Visual Basic. Using C#, you can add expansions for custom data using the DebuggerTypeProxyAttribute, DebuggerDisplayAttribute, and DebuggerBrowsableAttribute. Visual Basic supports the DebuggerDisplayAttribute attribute but not the DebuggerBrowsableAttribute attribute. |
This attribute can be applied only as a single instance to properties and fields. It cannot be applied to assemblies.
The constructor for this attribute takes one of the DebuggerBrowsableState enumeration values, which specifies one of the following states:
-
Never indicates that the member is not displayed in the data window. For example, using this value for the DebuggerBrowsableAttribute on a field removes the field from the hierarchy; the field is not displayed when you expand the enclosing type by clicking the plus sign (+) for the type instance.
-
Collapsed indicates that the member is displayed but not expanded by default. This is the default behavior.
-
RootHidden indicates that the member itself is not shown, but its constituent objects are displayed if it is an array or collection.
For an example of the use of this attribute and the DebuggerDisplayAttribute and DebuggerTypeProxyAttribute attributes, see the example provided for the DebuggerDisplayAttribute class.
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note