IVisualizerObjectProvider.ReplaceObject – metoda
Obor názvů: Microsoft.VisualStudio.DebuggerVisualizers
Sestavení: Microsoft.VisualStudio.DebuggerVisualizers (v Microsoft.VisualStudio.DebuggerVisualizers.dll)
Syntaxe
'Deklarace
Sub ReplaceObject ( _
newObject As Object _
)
void ReplaceObject(
Object newObject
)
void ReplaceObject(
Object^ newObject
)
abstract ReplaceObject :
newObject:Object -> unit
function ReplaceObject(
newObject : Object
)
Parametry
newObject
Typ: ObjectNový objekt objekt aktuálně detekují nahradit.
Poznámky
Nahradí objekt je znázorněn nového objektu, který určíte.Výsledkem newObject právě serializovat a předán parametr ReplaceData metoda.
Příklady
public class DebuggerSide : DialogDebuggerVisualizer
{
override protected void Show(IDialogVisualizerService windowService, IVisualizerObjectProvider objectProvider)
{
// Get a string from the debuggee side and display it in a message box.
String myString = objectProvider.GetObject().ToString();
MessageBox.Show(myString);
// Modify the string and send it back to the debuggee side.
String myNewString = myString.ToUpper();
// Make sure the object is replacable before you try to replace it.
// Otherwise, you will get an exception.
if (objectProvider.IsObjectReplaceable)
{
// This example assumes the object source is expecting a string.
objectProvider.ReplaceObject(myNewString);
}
}
// Other DebuggerSide methods ommitted for clarity.
}
Zabezpečení rozhraní .NET Framework
- Plná důvěra přímému volajícímu. Částečně zabezpečený kód nemůže tento člen použít. Další informace naleznete v tématu Používání knihoven z částečně důvěryhodného kódu.