IVisualizerObjectProvider.IsObjectReplaceable 속성
네임스페이스: Microsoft.VisualStudio.DebuggerVisualizers
어셈블리: Microsoft.VisualStudio.DebuggerVisualizers(Microsoft.VisualStudio.DebuggerVisualizers.dll)
구문
‘선언
ReadOnly Property IsObjectReplaceable As Boolean
bool IsObjectReplaceable { get; }
property bool IsObjectReplaceable {
bool get ();
}
abstract IsObjectReplaceable : bool with get
function get IsObjectReplaceable () : boolean
속성 값
형식: System.Boolean
시각화되고 있는 데이터 개체를 바꿀 수 있는지(읽기/쓰기) 또는 바꿀 수 없는지(읽기 전용) 확인합니다.
설명
ReplaceData 또는 ReplaceObject를 호출하여 데이터를 바꾸기 전에 이 메서드를 호출하여 개체를 바꿀 수 있는지 여부를 확인합니다.이 메서드에서 false가 반환되는 경우 개체를 읽기 전용으로 취급해야 합니다.
예제
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.
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.