Class ListBreakpointsResponse
Response for listing breakpoints.
Implements
Inherited Members
Namespace: Google.Apis.CloudDebugger.v2.Data
Assembly: Google.Apis.CloudDebugger.v2.dll
Syntax
public class ListBreakpointsResponse : IDirectResponseSchema
Properties
Breakpoints
List of breakpoints matching the request. The fields id
and location
are guaranteed to be set on each
breakpoint. The fields: stack_frames
, evaluated_expressions
and variable_table
are cleared on each
breakpoint regardless of its status.
Declaration
[JsonProperty("breakpoints")]
public virtual IList<Breakpoint> Breakpoints { get; set; }
Property Value
Type | Description |
---|---|
IList<Breakpoint> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
NextWaitToken
A wait token that can be used in the next call to list
(REST) or ListBreakpoints
(RPC) to block until
the list of breakpoints has changes.
Declaration
[JsonProperty("nextWaitToken")]
public virtual string NextWaitToken { get; set; }
Property Value
Type | Description |
---|---|
string |