IVisualizerObjectProvider.ReplaceObject, méthode
Espace de noms : Microsoft.VisualStudio.DebuggerVisualizers
Assembly : Microsoft.VisualStudio.DebuggerVisualizers (dans Microsoft.VisualStudio.DebuggerVisualizers.dll)
Syntaxe
'Déclaration
Sub ReplaceObject ( _
newObject As Object _
)
void ReplaceObject(
Object newObject
)
void ReplaceObject(
Object^ newObject
)
abstract ReplaceObject :
newObject:Object -> unit
function ReplaceObject(
newObject : Object
)
Paramètres
newObject
Type : ObjectNouvel objet destiné à remplacer l'objet en cours d'affichage.
Notes
Remplace l'objet actuellement affiché par un nouvel objet que vous spécifiez. Cela entraîne la sérialisation du paramètre newObject et son passage à la méthode ReplaceData.
Exemples
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.
}
Sécurité .NET Framework
- Confiance totale accordée à l'appelant immédiat. Ce membre ne peut pas être utilisé par du code d'un niveau de confiance partiel. Pour plus d'informations, voir Utilisation de bibliothèques à partir de code d'un niveau de confiance partiel.