DebuggerVisualizerAttribute Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the DebuggerVisualizerAttribute class.
Overloads
DebuggerVisualizerAttribute(String) |
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type name of the visualizer. |
DebuggerVisualizerAttribute(Type) |
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type of the visualizer. |
DebuggerVisualizerAttribute(String, String) |
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type name of the visualizer and the type name of the visualizer object source. |
DebuggerVisualizerAttribute(String, Type) |
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type name of the visualizer and the type of the visualizer object source. |
DebuggerVisualizerAttribute(Type, String) |
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type of the visualizer and the type name of the visualizer object source. |
DebuggerVisualizerAttribute(Type, Type) |
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type of the visualizer and the type of the visualizer object source. |
DebuggerVisualizerAttribute(String)
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type name of the visualizer.
public:
DebuggerVisualizerAttribute(System::String ^ visualizerTypeName);
public DebuggerVisualizerAttribute (string visualizerTypeName);
new System.Diagnostics.DebuggerVisualizerAttribute : string -> System.Diagnostics.DebuggerVisualizerAttribute
Public Sub New (visualizerTypeName As String)
Parameters
- visualizerTypeName
- String
The fully qualified type name of the visualizer.
Remarks
The DebuggerVisualizerAttribute can be applied to assemblies, classes, and structures. For information on the use of this attribute, see How to: Write a Visualizer.
Applies to
DebuggerVisualizerAttribute(Type)
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type of the visualizer.
public:
DebuggerVisualizerAttribute(Type ^ visualizer);
public DebuggerVisualizerAttribute (Type visualizer);
new System.Diagnostics.DebuggerVisualizerAttribute : Type -> System.Diagnostics.DebuggerVisualizerAttribute
Public Sub New (visualizer As Type)
Parameters
- visualizer
- Type
The type of the visualizer.
Exceptions
visualizer
is null
.
Remarks
The DebuggerVisualizerAttribute can be applied to assemblies, classes, and structures. For information on the use of this attribute, see How to: Write a Visualizer.
Applies to
DebuggerVisualizerAttribute(String, String)
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type name of the visualizer and the type name of the visualizer object source.
public:
DebuggerVisualizerAttribute(System::String ^ visualizerTypeName, System::String ^ visualizerObjectSourceTypeName);
public DebuggerVisualizerAttribute (string visualizerTypeName, string? visualizerObjectSourceTypeName);
public DebuggerVisualizerAttribute (string visualizerTypeName, string visualizerObjectSourceTypeName);
new System.Diagnostics.DebuggerVisualizerAttribute : string * string -> System.Diagnostics.DebuggerVisualizerAttribute
Public Sub New (visualizerTypeName As String, visualizerObjectSourceTypeName As String)
Parameters
- visualizerTypeName
- String
The fully qualified type name of the visualizer.
- visualizerObjectSourceTypeName
- String
The fully qualified type name of the visualizer object source.
Remarks
The DebuggerVisualizerAttribute can be applied to assemblies, classes, and structures. For information on the use of this attribute, see How to: Write a Visualizer.
Applies to
DebuggerVisualizerAttribute(String, Type)
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type name of the visualizer and the type of the visualizer object source.
public:
DebuggerVisualizerAttribute(System::String ^ visualizerTypeName, Type ^ visualizerObjectSource);
public DebuggerVisualizerAttribute (string visualizerTypeName, Type visualizerObjectSource);
new System.Diagnostics.DebuggerVisualizerAttribute : string * Type -> System.Diagnostics.DebuggerVisualizerAttribute
Public Sub New (visualizerTypeName As String, visualizerObjectSource As Type)
Parameters
- visualizerTypeName
- String
The fully qualified type name of the visualizer.
- visualizerObjectSource
- Type
The type of the visualizer object source.
Exceptions
visualizerObjectSource
is null
.
Remarks
The DebuggerVisualizerAttribute can be applied to assemblies, classes, and structures. For information on the use of this attribute, see How to: Write a Visualizer.
Applies to
DebuggerVisualizerAttribute(Type, String)
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type of the visualizer and the type name of the visualizer object source.
public:
DebuggerVisualizerAttribute(Type ^ visualizer, System::String ^ visualizerObjectSourceTypeName);
public DebuggerVisualizerAttribute (Type visualizer, string? visualizerObjectSourceTypeName);
public DebuggerVisualizerAttribute (Type visualizer, string visualizerObjectSourceTypeName);
new System.Diagnostics.DebuggerVisualizerAttribute : Type * string -> System.Diagnostics.DebuggerVisualizerAttribute
Public Sub New (visualizer As Type, visualizerObjectSourceTypeName As String)
Parameters
- visualizer
- Type
The type of the visualizer.
- visualizerObjectSourceTypeName
- String
The fully qualified type name of the visualizer object source.
Exceptions
visualizer
is null
.
Remarks
The DebuggerVisualizerAttribute can be applied to assemblies, classes, and structures. For information on the use of this attribute, see How to: Write a Visualizer.
Applies to
DebuggerVisualizerAttribute(Type, Type)
Initializes a new instance of the DebuggerVisualizerAttribute class, specifying the type of the visualizer and the type of the visualizer object source.
public:
DebuggerVisualizerAttribute(Type ^ visualizer, Type ^ visualizerObjectSource);
public DebuggerVisualizerAttribute (Type visualizer, Type visualizerObjectSource);
new System.Diagnostics.DebuggerVisualizerAttribute : Type * Type -> System.Diagnostics.DebuggerVisualizerAttribute
Public Sub New (visualizer As Type, visualizerObjectSource As Type)
Parameters
- visualizer
- Type
The type of the visualizer.
- visualizerObjectSource
- Type
The type of the visualizer object source.
Exceptions
visualizerObjectSource
is null
.
Remarks
The DebuggerVisualizerAttribute can be applied to assemblies, classes, and structures. For information on the use of this attribute, see How to: Write a Visualizer.