Google Cloud Support v2 API - Class CommentService.CommentServiceClient (1.0.0)

public class CommentService.CommentServiceClient : ClientBase<CommentService.CommentServiceClient>

Reference documentation and code samples for the Google Cloud Support v2 API class CommentService.CommentServiceClient.

Client for CommentService

Inheritance

object > ClientBase > ClientBaseCommentServiceCommentServiceClient > CommentService.CommentServiceClient

Namespace

Google.Cloud.Support.V2

Assembly

Google.Cloud.Support.V2.dll

Constructors

CommentServiceClient()

protected CommentServiceClient()

Protected parameterless constructor to allow creation of test doubles.

CommentServiceClient(CallInvoker)

public CommentServiceClient(CallInvoker callInvoker)

Creates a new client for CommentService that uses a custom CallInvoker.

Parameter
NameDescription
callInvokerCallInvoker

The callInvoker to use to make remote calls.

CommentServiceClient(ChannelBase)

public CommentServiceClient(ChannelBase channel)

Creates a new client for CommentService

Parameter
NameDescription
channelChannelBase

The channel to use to make remote calls.

CommentServiceClient(ClientBaseConfiguration)

protected CommentServiceClient(ClientBase.ClientBaseConfiguration configuration)

Protected constructor to allow creation of configured clients.

Parameter
NameDescription
configurationClientBaseClientBaseConfiguration

The client configuration.

Methods

CreateComment(CreateCommentRequest, CallOptions)

public virtual Comment CreateComment(CreateCommentRequest request, CallOptions options)

Add a new comment to the specified Case. The comment object must have the following fields set: body.

Parameters
NameDescription
requestCreateCommentRequest

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
Comment

The response received from the server.

CreateComment(CreateCommentRequest, Metadata, DateTime?, CancellationToken)

public virtual Comment CreateComment(CreateCommentRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Add a new comment to the specified Case. The comment object must have the following fields set: body.

Parameters
NameDescription
requestCreateCommentRequest

The request to send to the server.

headersMetadata

The initial metadata to send with the call. This parameter is optional.

deadlineDateTime

An optional deadline for the call. The call will be cancelled if deadline is hit.

cancellationTokenCancellationToken

An optional token for canceling the call.

Returns
TypeDescription
Comment

The response received from the server.

CreateCommentAsync(CreateCommentRequest, CallOptions)

public virtual AsyncUnaryCall<Comment> CreateCommentAsync(CreateCommentRequest request, CallOptions options)

Add a new comment to the specified Case. The comment object must have the following fields set: body.

Parameters
NameDescription
requestCreateCommentRequest

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
AsyncUnaryCallComment

The call object.

CreateCommentAsync(CreateCommentRequest, Metadata, DateTime?, CancellationToken)

public virtual AsyncUnaryCall<Comment> CreateCommentAsync(CreateCommentRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Add a new comment to the specified Case. The comment object must have the following fields set: body.

Parameters
NameDescription
requestCreateCommentRequest

The request to send to the server.

headersMetadata

The initial metadata to send with the call. This parameter is optional.

deadlineDateTime

An optional deadline for the call. The call will be cancelled if deadline is hit.

cancellationTokenCancellationToken

An optional token for canceling the call.

Returns
TypeDescription
AsyncUnaryCallComment

The call object.

ListComments(ListCommentsRequest, CallOptions)

public virtual ListCommentsResponse ListComments(ListCommentsRequest request, CallOptions options)

Retrieve all Comments associated with the Case object.

Parameters
NameDescription
requestListCommentsRequest

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
ListCommentsResponse

The response received from the server.

ListComments(ListCommentsRequest, Metadata, DateTime?, CancellationToken)

public virtual ListCommentsResponse ListComments(ListCommentsRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Retrieve all Comments associated with the Case object.

Parameters
NameDescription
requestListCommentsRequest

The request to send to the server.

headersMetadata

The initial metadata to send with the call. This parameter is optional.

deadlineDateTime

An optional deadline for the call. The call will be cancelled if deadline is hit.

cancellationTokenCancellationToken

An optional token for canceling the call.

Returns
TypeDescription
ListCommentsResponse

The response received from the server.

ListCommentsAsync(ListCommentsRequest, CallOptions)

public virtual AsyncUnaryCall<ListCommentsResponse> ListCommentsAsync(ListCommentsRequest request, CallOptions options)

Retrieve all Comments associated with the Case object.

Parameters
NameDescription
requestListCommentsRequest

The request to send to the server.

optionsCallOptions

The options for the call.

Returns
TypeDescription
AsyncUnaryCallListCommentsResponse

The call object.

ListCommentsAsync(ListCommentsRequest, Metadata, DateTime?, CancellationToken)

public virtual AsyncUnaryCall<ListCommentsResponse> ListCommentsAsync(ListCommentsRequest request, Metadata headers = null, DateTime? deadline = null, CancellationToken cancellationToken = default)

Retrieve all Comments associated with the Case object.

Parameters
NameDescription
requestListCommentsRequest

The request to send to the server.

headersMetadata

The initial metadata to send with the call. This parameter is optional.

deadlineDateTime

An optional deadline for the call. The call will be cancelled if deadline is hit.

cancellationTokenCancellationToken

An optional token for canceling the call.

Returns
TypeDescription
AsyncUnaryCallListCommentsResponse

The call object.

NewInstance(ClientBaseConfiguration)

protected override CommentService.CommentServiceClient NewInstance(ClientBase.ClientBaseConfiguration configuration)

Creates a new instance of client from given ClientBaseConfiguration.

Parameter
NameDescription
configurationClientBaseClientBaseConfiguration
Returns
TypeDescription
CommentServiceCommentServiceClient
Overrides