Properties
Visual Studio .NET 2003
The following properties are implemented in the Visual Studio Debugger Object Model.
| Property | Description |
|---|---|
| AllBreakpointsLastHit Property | Returns a collection of the breakpoints that were last simultaneously hit. |
| Arguments Property | Returns a collection of expressions representing the arguments passed to the specified frame. |
| BreakpointLastHit Property | Returns the last breakpoint hit. |
| Breakpoints Property | Returns a collection of breakpoints. |
| Children Property | Returns a collection of breakpoints that represent this breakpoint's children. If the breakpoint has no children, then nothing is returned. |
| Collection Property | Returns a collection of the specified object. |
| Condition Property | Returns the condition for any type of breakpoint. |
| ConditionType Property | Returns the condition type. Can be either break when true, or break when changed. |
| Count Property | Returns a value indicating the count of objects in the collection. |
| CurrentHits Property | Returns the number of times this breakpoint has been hit during this debugging session. |
| CurrentMode Property | Returns the current mode of the debugger within the context of the IDE. |
| CurrentProcess Property | Sets or returns the active process. Although the debugger supports debugging more than one process at a time, only one process can be active. |
| CurrentProgram Property | Sets or returns the active program. Although the debugger supports debugging more than one program at a time, only one program can be active. |
| CurrentStackFrame Property | Sets or returns the current stack frame. |
| CurrentThread Property | Sets or returns the current thread being debugged. |
| DataMembers Property | If the expression represents a class or a structure, this property retrieves a list of member variables as an expressions collection. |
| DebuggedProcesses Property | Returns the collection of processes currently being debugged. |
| DTE Property | Returns the top-level extensibility object. |
| Enabled Property | Sets or returns the enabled state of the specified breakpoint. |
| File Property | Returns the file in which this breakpoint is or will be set for file-based breakpoints. |
| FileColumn Property | Returns the column within a file for a file breakpoint. |
| FileLine Property | Returns the line within a file for a file breakpoint. |
| FunctionColumnOffset Property | Returns the column offset from the name for a function breakpoint. |
| FunctionLineOffset Property | Returns the line offset from the name for a function breakpoint. |
| FunctionName Property | Returns the function name for the specified object. |
| HexDisplayMode Property | Determines or sets whether expressions are output in hexadecimal or decimal format. |
| HexInputMode Property | Determines or sets whether expressions are output in hexadecimal or decimal format. |
| HitCountTarget Property | Returns the hitcount target for any type of breakpoint. Interpreted based on the hitcount type. |
| HitCountType Property | Returns the hitcount type. Describes how to interpret a hit count. |
| ID Property | Returns the ID for the thread. |
| IsAlive Property | Indicates whether the referenced thread is still alive. The thread state may change before this function returns. |
| IsBeingDebugged Property | Indicates whether a program is being debugged when this property is called. The program might change debug states before the call to this property can return. |
| IsFrozen Property | Indicates whether the thread is frozen by the debugger. |
| IsValidValue Property | Indicates whether the specified value is valid. |
| Language Property | Returns the programming language associated with this stack frame. |
| Language Property | Returns the language for name or conditional breakpoints. |
| Languages Property | Returns a list of languages that the debugger supports. |
| LastBreakReason Property | Returns the last reason that a program was broken. |
| LocalProcesses Property | Returns a collection of processes currently running on this machine. |
| Locals Property | Returns a collection of expressions representing the locals currently known by this frame. |
| Location Property | Returns the address at which the thread was executing code at the time the process was stopped for debugging. |
| LocationType Property | Returns the location type this breakpoint represents. |
| Module Property | Returns the module name for this stack frame. |
| Name Property | Sets or returns the name of the object. |
| Parent Property | Returns the parent object. |
| Priority Property | Returns the priority of this thread. |
| Process Property | Returns the process by which this program is managed. |
| ProcessID Property | Returns the Win32 process ID for this process. |
| Program Property | Returns the name of the program. |
| Programs Property | Returns the collection of programs being managed by this process. |
| ReturnType Property | Returns the return type of this stack frame. |
| StackFrames Property | Returns the collection of stack frames through which this thread is executing. |
| SuspendCount Property | Returns the number of times this thread has been suspended by the item being debugged. |
| Tag Property | Returns or sets a user-defined string identifying this breakpoint. |
| Threads Property | Returns the collection of threads being managed by this program. |
| Type Property | Returns a constant indicating the object type. |
| Value Property | Returns or sets the current value of the expression as a string. |