Método IVisualizerObjectProvider.ReplaceObject
Namespace: Microsoft.VisualStudio.DebuggerVisualizers
Assembly: Microsoft.VisualStudio.DebuggerVisualizers (em Microsoft.VisualStudio.DebuggerVisualizers.dll)
Sintaxe
'Declaração
Sub ReplaceObject ( _
newObject As Object _
)
void ReplaceObject(
Object newObject
)
void ReplaceObject(
Object^ newObject
)
abstract ReplaceObject :
newObject:Object -> unit
function ReplaceObject(
newObject : Object
)
Parâmetros
- newObject
Tipo: System.Object
O novo objeto para substituir o objeto atualmente sendo visualizado.
Comentários
Substitui o objeto sendo visualizado com um novo objeto que você especificar. Isso resulta na newObject parâmetro sendo serializado e passado para o ReplaceData método.
Exemplos
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.
}
Segurança do .NET Framework
- Confiança total para o chamador imediato. O membro não pode ser usado por código parcialmente confiável. Para obter mais informações, consulte Usando bibliotecas de código parcialmente confiáveis.