IVisualizerObjectProvider.ReplaceObject 메서드
네임스페이스: Microsoft.VisualStudio.DebuggerVisualizers
어셈블리: Microsoft.VisualStudio.DebuggerVisualizers(Microsoft.VisualStudio.DebuggerVisualizers.dll)
구문
‘선언
Sub ReplaceObject ( _
newObject As Object _
)
void ReplaceObject(
Object newObject
)
void ReplaceObject(
Object^ newObject
)
abstract ReplaceObject :
newObject:Object -> unit
function ReplaceObject(
newObject : Object
)
매개 변수
- newObject
형식: System.Object
현재 시각화되고 있는 개체를 대신할 새 개체입니다.
설명
시각화되고 있는 개체를 새로 지정한 개체로 바꿉니다.그러면 newObject 매개 변수가 serialize되어 ReplaceData 메서드에 전달됩니다.
예제
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.
}
.NET Framework 보안
- 직접 실행 호출자의 경우 완전히 신뢰합니다. 이 멤버는 부분적으로 신뢰할 수 있는 코드에서 사용할 수 없습니다. 자세한 내용은 부분 신뢰 코드에서 라이브러리 사용을 참조하십시오.