Show / Hide Table of Contents

Class CommentsResource.ListRequest

Shut down. See https://developers.google.com/+/api-shutdown for more details.

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

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string activityId)
Parameters
Type Name Description
IClientService service
System.String activityId

Properties

ActivityId

The ID of the activity to get comments for.

Declaration
[RequestParameter("activityId", RequestParameterType.Path)]
public virtual string ActivityId { get; }
Property Value
Type Description
System.String

HttpMethod

Gets the HTTP method.

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

MaxResults

The maximum number of comments to include in the response, which is used for paging. For any response, the actual number returned might be less than the specified maxResults.

Declaration
[RequestParameter("maxResults", RequestParameterType.Query)]
public virtual long? MaxResults { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

MethodName

Gets the method name.

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

PageToken

The continuation token, which is used to page through large result sets. To get the next page of results, set this parameter to the value of "nextPageToken" from the previous response.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
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.Plus.v1.Data.CommentFeed>.RestPath

SortOrder

The order in which to sort the list of comments.

Declaration
[RequestParameter("sortOrder", RequestParameterType.Query)]
public virtual CommentsResource.ListRequest.SortOrderEnum? SortOrder { get; set; }
Property Value
Type Description
System.Nullable<CommentsResource.ListRequest.SortOrderEnum>

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Plus.v1.PlusBaseServiceRequest<Google.Apis.Plus.v1.Data.CommentFeed>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top