Show / Hide Table of Contents

Class ListOperationsRequest

The request message for [Operations.ListOperations][google.longrunning.Operations.ListOperations].

Inheritance
System.Object
ListOperationsRequest
Implements
IMessage<ListOperationsRequest>
IMessage
System.IEquatable<ListOperationsRequest>
IDeepCloneable<ListOperationsRequest>
IPageRequest
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.LongRunning
Assembly: Google.LongRunning.dll
Syntax
public sealed class ListOperationsRequest : IMessage<ListOperationsRequest>, IMessage, IEquatable<ListOperationsRequest>, IDeepCloneable<ListOperationsRequest>, IPageRequest

Constructors

ListOperationsRequest()

Declaration
public ListOperationsRequest()

ListOperationsRequest(ListOperationsRequest)

Declaration
public ListOperationsRequest(ListOperationsRequest other)
Parameters
Type Name Description
ListOperationsRequest other

Properties

Filter

The standard list filter.

Declaration
public string Filter { get; set; }
Property Value
Type Description
System.String

Name

The name of the operation's parent resource.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String

PageSize

The standard list page size.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32
Implements
IPageRequest.PageSize

PageToken

The standard list page token.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
System.String
Implements
IPageRequest.PageToken
Back to top