DebuggerTypeProxyAttribute Class

DebuggerTypeProxyAttribute Class

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Specifies the display proxy for a type.

System::Object
  System::Attribute
    System.Diagnostics::DebuggerTypeProxyAttribute

Namespace:  System.Diagnostics
Assembly:  mscorlib (in mscorlib.dll)

No code example is currently available or this language may not be supported.

The DebuggerTypeProxyAttribute type exposes the following members.

  NameDescription
Public methodDebuggerTypeProxyAttribute(String)Initializes a new instance of the DebuggerTypeProxyAttribute class using the type name of the proxy.
Public methodDebuggerTypeProxyAttribute(Type)Initializes a new instance of the DebuggerTypeProxyAttribute class using the type of the proxy.
Top

  NameDescription
Public propertyProxyTypeNameGets the name of the proxy type.
Public propertyTargetGets or sets the target type for the attribute.
Public propertyTargetTypeNameGets or sets the name of the target type for the attribute.
Top

  NameDescription
Public methodEqualsInfrastructure. Returns a value that indicates whether this instance is equal to a specified object. (Inherited from Attribute.)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public methodGetHashCodeReturns the hash code for this instance. (Inherited from Attribute.)
Public methodGetTypeGets the Type of the current instance. (Inherited from Object.)
Public methodMatchWhen overridden in a derived class, returns a value that indicates whether this instance equals a specified object. (Inherited from Attribute.)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object. (Inherited from Object.)
Public methodToStringReturns a string that represents the current object. (Inherited from Object.)
Top

Use the DebuggerTypeProxyAttribute attribute when you have to significantly and fundamentally change the debugging view of a type without changing the type itself.

This attribute is used to specify a display proxy for a type, and enables you to customize the view for the type. You can also use this attribute at the assembly level; in that case, the Target property specifies the type for which the proxy will be used. In general, this attribute specifies a private, nested type that occurs within the type to which the attribute is applied. An expression evaluator that supports type viewers checks for this attribute when a type is displayed. If the attribute is found, the expression evaluator substitutes the display proxy type for the type that the attribute is applied to.

When the DebuggerBrowsableAttribute is present, the debugger variable window displays only the public members of the proxy type. Private members are not displayed. The behavior of the data window is not changed by attribute-enhanced views.

To avoid unnecessary performance penalties, expression evaluators should not examine the attributes on the display proxy of the type unless the type is expanded, either by the user clicking the plus sign (+) next to the type in a data window, or through the application of the DebuggerBrowsableAttribute attribute. Therefore, we recommend that no attributes be applied to the display type. Attributes can and should be applied within the body of the display type.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Show:
© 2017 Microsoft