Compartilhar via


VisualizerTargetType Constructors

Definition

Overloads

VisualizerTargetType(String, String)

Initializes a new instance of the VisualizerTargetType class.

VisualizerTargetType(String, Type)

Initializes a new instance of the VisualizerTargetType class.

VisualizerTargetType(String, String)

Initializes a new instance of the VisualizerTargetType class.

public VisualizerTargetType (string visualizerDisplayName, string targetType);
new Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.VisualizerTargetType : string * string -> Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.VisualizerTargetType
Public Sub New (visualizerDisplayName As String, targetType As String)

Parameters

visualizerDisplayName
String

The display name of the debugger visualizer.

targetType
String

The AssemblyQualifiedName of the type that is supported by this debugger visualizer.

targetType must be a concrete type. The debugger visualizer will only support objects of type targetType, not objects of types extending targetType.

If targetType is a generic type, it must be unbound.

Trailing compoments of the AssemblyQualifiedName can be omitted.

Applies to

VisualizerTargetType(String, Type)

Initializes a new instance of the VisualizerTargetType class.

public VisualizerTargetType (string visualizerDisplayName, Type targetType);
new Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.VisualizerTargetType : string * Type -> Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.VisualizerTargetType
Public Sub New (visualizerDisplayName As String, targetType As Type)

Parameters

visualizerDisplayName
String

The display name of the debugger visualizer.

targetType
Type

The Type that is supported by this debugger visualizer.

targetType must be a concrete type. The debugger visualizer will only support objects of type targetType, not objects of types extending targetType.

If targetType is a generic type, it must be unbound.

Trailing compoments of the AssemblyQualifiedName can be omitted.

Applies to