Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Namespace: Microsoft.VisualStudio.DebuggerVisualizers
Assembly: Microsoft.VisualStudio.DebuggerVisualizers (in Microsoft.VisualStudio.DebuggerVisualizers.dll)
Syntax
'Declaration
Public Property DebuggeeObject As Object
'Usage
Dim instance As VisualizerDevelopmentHost
Dim value As Object
value = instance.DebuggeeObject
instance.DebuggeeObject = value
public Object DebuggeeObject { get; set; }
public:
property Object^ DebuggeeObject {
Object^ get ();
void set (Object^ value);
}
public function get DebuggeeObject () : Object
public function set DebuggeeObject (value : Object)
Property Value
Type: System.Object
Remarks
When you are running a visualizer under the visualizer development host, this object represents the object being debugged. You can use get and set to change to change this to another object. This object allows reuse of one host for multiple visualizer uses.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
VisualizerDevelopmentHost Class