Show / Hide Table of Contents

Class ListBreakpointsResponse

Response for listing breakpoints.

Inheritance
object
ListBreakpointsResponse
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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

Implements

IDirectResponseSchema
In This Article
Back to top Generated by DocFX