Proprietà IVisualizerObjectProvider.IsObjectReplaceable

Spazio dei nomi:  Microsoft.VisualStudio.DebuggerVisualizers
Assembly:  Microsoft.VisualStudio.DebuggerVisualizers (in Microsoft.VisualStudio.DebuggerVisualizers.dll)

Sintassi

'Dichiarazione
ReadOnly Property IsObjectReplaceable As Boolean
    Get
bool IsObjectReplaceable { get; }
property bool IsObjectReplaceable {
    bool get ();
}
abstract IsObjectReplaceable : bool
function get IsObjectReplaceable () : boolean

Valore proprietà

Tipo: System.Boolean
Determina se l'oggetto dati visualizzato è sostituibile (lettura/scrittura) oppure non è sostituibile (sola lettura).

Note

Prima di tentare di sostituire dati effettuando chiamate a ReplaceData o ReplaceObject, chiamare questo metodo per determinare se l'oggetto è sostituibile.Se il metodo restituisce il valore false, l'oggetto deve essere considerato di sola lettura.

Esempi

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)
      {
         objectProvider.ReplaceObject(myNewString);
      }
   }
// Other DebuggerSide methods ommitted for clarity.
}

Sicurezza di .NET Framework

Vedere anche

Riferimenti

IVisualizerObjectProvider Interfaccia

Spazio dei nomi Microsoft.VisualStudio.DebuggerVisualizers