IScriptDebuggerVariable

Overview

The IScriptDebuggerVariable interface represents script variable. This interface is used to separate the debugger variable object implementation from its definition.

Objects implementing the IScriptDebuggerVariable interface are created internally in the EcmaScriptProvider and are sent to the remote debugger application when Remote Script Debugging feature is implemented by the server application. In most cases there is no need to implement the IScriptDebuggerVariable interface in the user code or to anyhow access objects implementing it.

For internal use only.

Location


Properties


Name

Getv variable name

 

property Name: String read;

 

String Name { get; }

 

ReadOnly Property Name() As String

Type

Gets variable type name

 

property Type: String read;

 

String Type { get; }

 

ReadOnly Property Type() As String

Value

Gets variable value serialized using JSON object representation conventions.

 

property Value: String read;

 

String Value { get; }

 

ReadOnly Property Value() As String