Class WatchItem
A watch item for the debugger to consume. Most properties make or not sense depending on the WatchType.
Inheritance
System.Object
WatchItem
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public class WatchItem
Properties
Address
Gets or sets the address of the item
Declaration
public int Address { get; set; }
Property Value
|
System.Int32
|
BasePtr
Gets or sets the base pointer (base value of v-stack at entering the function). Valid only for call-stack items
Declaration
public int BasePtr { get; set; }
Property Value
|
System.Int32
|
IsError
Gets or sets a value indicating whether this instance is generating an error.
Declaration
public bool IsError { get; set; }
Property Value
|
System.Boolean
|
Location
Gets or sets the source location this item refers to.
Declaration
public SourceRef Location { get; set; }
Property Value
|
SourceRef
|
LValue
Gets or sets the symbol reference of the item
Declaration
public SymbolRef LValue { get; set; }
Property Value
|
SymbolRef
|
Name
Gets or sets the name of the item
Declaration
public string Name { get; set; }
Property Value
|
System.String
|
RetAddress
Gets or sets the return address. Valid only for call-stack items
Declaration
public int RetAddress { get; set; }
Property Value
|
System.Int32
|
Value
Gets or sets the value of the item
Declaration
public DynValue Value { get; set; }
Property Value
|
DynValue
|
Methods
ToString()
Returns a System.String that represents this instance.
Declaration
public override string ToString()
Returns
|
System.String
A System.String that represents this instance. |
Overrides
System.Object.ToString()