Show / Hide Table of Contents

Class TurnBasedMatchesResource.ListRequest

Returns turn-based matches the player is or was involved in.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<TurnBasedMatchList>
GamesBaseServiceRequest<TurnBasedMatchList>
TurnBasedMatchesResource.ListRequest
Implements
IClientServiceRequest<TurnBasedMatchList>
IClientServiceRequest
Inherited Members
GamesBaseServiceRequest<TurnBasedMatchList>.Alt
GamesBaseServiceRequest<TurnBasedMatchList>.Fields
GamesBaseServiceRequest<TurnBasedMatchList>.Key
GamesBaseServiceRequest<TurnBasedMatchList>.OauthToken
GamesBaseServiceRequest<TurnBasedMatchList>.PrettyPrint
GamesBaseServiceRequest<TurnBasedMatchList>.QuotaUser
GamesBaseServiceRequest<TurnBasedMatchList>.UserIp
ClientServiceRequest<TurnBasedMatchList>.Execute()
ClientServiceRequest<TurnBasedMatchList>.ExecuteAsStream()
ClientServiceRequest<TurnBasedMatchList>.ExecuteAsync()
ClientServiceRequest<TurnBasedMatchList>.ExecuteAsync(CancellationToken)
ClientServiceRequest<TurnBasedMatchList>.ExecuteAsStreamAsync()
ClientServiceRequest<TurnBasedMatchList>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<TurnBasedMatchList>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<TurnBasedMatchList>.GenerateRequestUri()
ClientServiceRequest<TurnBasedMatchList>.GetBody()
ClientServiceRequest<TurnBasedMatchList>.GetDefaultETagAction(String)
ClientServiceRequest<TurnBasedMatchList>.ETagAction
ClientServiceRequest<TurnBasedMatchList>.ModifyRequest
ClientServiceRequest<TurnBasedMatchList>.RequestParameters
ClientServiceRequest<TurnBasedMatchList>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.Finalize()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Games.v1
Assembly: Google.Apis.Games.v1.dll
Syntax
public class ListRequest : GamesBaseServiceRequest<TurnBasedMatchList>, IClientServiceRequest<TurnBasedMatchList>, IClientServiceRequest

Constructors

ListRequest(IClientService)

Constructs a new List request.

Declaration
public ListRequest(IClientService service)
Parameters
Type Name Description
IClientService service

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Games.v1.Data.TurnBasedMatchList>.HttpMethod

IncludeMatchData

True if match data should be returned in the response. Note that not all data will necessarily be returned if include_match_data is true; the server may decide to only return data for some of the matches to limit download size for the client. The remainder of the data for these matches will be retrievable on request.

Declaration
public virtual Nullable<bool> IncludeMatchData { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Language

The preferred language to use for strings returned by this method.

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

MaxCompletedMatches

The maximum number of completed or canceled matches to return in the response. If not set, all matches returned could be completed or canceled.

Declaration
public virtual Nullable<int> MaxCompletedMatches { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MaxResults

The maximum number of matches to return in the response, used for paging. For any response, the actual number of matches to return may be less than the specified maxResults.

Declaration
public virtual Nullable<int> MaxResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Games.v1.Data.TurnBasedMatchList>.MethodName

PageToken

The token returned by the previous request.

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

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Games.v1.Data.TurnBasedMatchList>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Games.v1.GamesBaseServiceRequest<Google.Apis.Games.v1.Data.TurnBasedMatchList>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top