Show / Hide Table of Contents

Class RoomsResource.DismissRequest

Dismiss an invitation to join a room. For internal use by the Games SDK only. Calling this method directly is unsupported.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<System.String>
GamesBaseServiceRequest<System.String>
RoomsResource.DismissRequest
Implements
IClientServiceRequest<System.String>
IClientServiceRequest
Inherited Members
GamesBaseServiceRequest<String>.Alt
GamesBaseServiceRequest<String>.Fields
GamesBaseServiceRequest<String>.Key
GamesBaseServiceRequest<String>.OauthToken
GamesBaseServiceRequest<String>.PrettyPrint
GamesBaseServiceRequest<String>.QuotaUser
GamesBaseServiceRequest<String>.UserIp
ClientServiceRequest<String>.Execute()
ClientServiceRequest<String>.ExecuteAsStream()
ClientServiceRequest<String>.ExecuteAsync()
ClientServiceRequest<String>.ExecuteAsync(CancellationToken)
ClientServiceRequest<String>.ExecuteAsStreamAsync()
ClientServiceRequest<String>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<String>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<String>.GenerateRequestUri()
ClientServiceRequest<String>.GetBody()
ClientServiceRequest<String>.GetDefaultETagAction(String)
ClientServiceRequest<String>.ETagAction
ClientServiceRequest<String>.ModifyRequest
ClientServiceRequest<String>.RequestParameters
ClientServiceRequest<String>.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 DismissRequest : GamesBaseServiceRequest<string>, IClientServiceRequest<string>, IClientServiceRequest

Constructors

DismissRequest(IClientService, String)

Constructs a new Dismiss request.

Declaration
public DismissRequest(IClientService service, string roomId)
Parameters
Type Name Description
IClientService service
System.String roomId

Properties

HttpMethod

Gets the HTTP method.

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

MethodName

Gets the method name.

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

RestPath

Gets the REST path.

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

RoomId

The ID of the room.

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

Methods

InitParameters()

Initializes Dismiss parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top