Compartilhar via


Propriedade IVisualizerObjectProvider.IsObjectReplaceable

Namespace:  Microsoft.VisualStudio.DebuggerVisualizers
Assembly:  Microsoft.VisualStudio.DebuggerVisualizers (em Microsoft.VisualStudio.DebuggerVisualizers.dll)

Sintaxe

'Declaração
ReadOnly Property IsObjectReplaceable As Boolean
bool IsObjectReplaceable { get; }
property bool IsObjectReplaceable {
    bool get ();
}
abstract IsObjectReplaceable : bool with get
function get IsObjectReplaceable () : boolean

Valor de propriedade

Tipo: Boolean
Determina se o objeto de dados que está sendo visualizado é substituível (leitura/gravação) ou nonreplaceable (somente leitura).

Comentários

Antes de tentar substituir dados chamando ReplaceData ou ReplaceObject, chame esse método para determinar se o objeto é substituível. Se esse método retorna um valor de false, trate o objeto como somente leitura.

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

Segurança do .NET Framework

Consulte também

Referência

IVisualizerObjectProvider Interface

Namespace Microsoft.VisualStudio.DebuggerVisualizers