DebuggerVisualizerProviderConfiguration 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.
Overloads
DebuggerVisualizerProviderConfiguration(VisualizerTargetType[]) |
Initializes a new instance of the DebuggerVisualizerProviderConfiguration class. |
DebuggerVisualizerProviderConfiguration(String, String) |
Initializes a new instance of the DebuggerVisualizerProviderConfiguration class. |
DebuggerVisualizerProviderConfiguration(String, Type) |
Initializes a new instance of the DebuggerVisualizerProviderConfiguration class. |
DebuggerVisualizerProviderConfiguration(VisualizerTargetType[])
Initializes a new instance of the DebuggerVisualizerProviderConfiguration class.
public DebuggerVisualizerProviderConfiguration (params Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.VisualizerTargetType[] targets);
new Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.DebuggerVisualizerProviderConfiguration : Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.VisualizerTargetType[] -> Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.DebuggerVisualizerProviderConfiguration
Public Sub New (ParamArray targets As VisualizerTargetType())
Parameters
- targets
- VisualizerTargetType[]
Types that a debugger visualizer will target and the corresponding display names for the visualizer.
Applies to
DebuggerVisualizerProviderConfiguration(String, String)
Initializes a new instance of the DebuggerVisualizerProviderConfiguration class.
public DebuggerVisualizerProviderConfiguration (string visualizerDisplayName, string targetType);
new Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.DebuggerVisualizerProviderConfiguration : string * string -> Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.DebuggerVisualizerProviderConfiguration
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
DebuggerVisualizerProviderConfiguration(String, Type)
Initializes a new instance of the DebuggerVisualizerProviderConfiguration class.
public DebuggerVisualizerProviderConfiguration (string visualizerDisplayName, Type targetType);
new Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.DebuggerVisualizerProviderConfiguration : string * Type -> Microsoft.VisualStudio.Extensibility.DebuggerVisualizers.DebuggerVisualizerProviderConfiguration
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.