Klasa DialogDebuggerVisualizer
Hierarchia dziedziczenia
Object
Microsoft.VisualStudio.DebuggerVisualizers.DialogDebuggerVisualizer
Przestrzeń nazw: Microsoft.VisualStudio.DebuggerVisualizers
Zestaw: Microsoft.VisualStudio.DebuggerVisualizers (w Microsoft.VisualStudio.DebuggerVisualizers.dll)
Składnia
'Deklaracja
Public MustInherit Class DialogDebuggerVisualizer
public abstract class DialogDebuggerVisualizer
public ref class DialogDebuggerVisualizer abstract
[<AbstractClass>]
type DialogDebuggerVisualizer = class end
public abstract class DialogDebuggerVisualizer
Typ DialogDebuggerVisualizer uwidacznia następujące elementy członkowskie.
Konstruktorzy
Nazwa | Opis | |
---|---|---|
DialogDebuggerVisualizer |
Początek
Metody
Nazwa | Opis | |
---|---|---|
Equals | Determines whether the specified object is equal to the current object. (Odziedziczone z Object). | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Odziedziczone z Object). | |
GetHashCode | Serves as the default hash function. (Odziedziczone z Object). | |
GetType | Gets the Type of the current instance. (Odziedziczone z Object). | |
MemberwiseClone | Creates a shallow copy of the current Object. (Odziedziczone z Object). | |
Show | ||
ToString | Returns a string that represents the current object. (Odziedziczone z Object). |
Początek
Uwagi
Jest to klasa debugera po stronie, który odbiera dane ze źródła obiektu za pośrednictwem dostawcy obiektu.Ta klasa jest odpowiedzialny za wykazujące i zarządzanie interfejsu użytkownika oraz opcjonalne edycji danych.Zazwyczaj wystarczy tylko zastąpić Show() metodę, aby użyć tej klasy.
Przykłady
public class Visualizer1 : DialogDebuggerVisualizer
{
protected override void Show(IDialogVisualizerService windowService, IVisualizerObjectProvider objectProvider)
{
// TODO: Get the object to display a visualizer for.
// Cast the result of objectProvider.GetObject()
// to the type of the object being visualized.
object data = (object)objectProvider.GetObject();
// TODO: Display your view of the object.
// Replace displayForm with your own custom Form or Control.
Form displayForm = new Form();
displayForm.Text = data.ToString();
windowService.ShowDialog(displayForm);
}
}
Bezpieczeństwo wątku
Wszystkie publiczne static (Shared w języku Visual Basic) elementy członkowskie tego typu są bezpieczne dla wątków. Wystąpienia elementów członkowskich nie dają gwarancji bezpieczeństwa wątków.