Show / Hide Table of Contents

Class CommentsResource.ListRequest

Lists comments.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<CommentList>
BloggerBaseServiceRequest<CommentList>
CommentsResource.ListRequest
Implements
IClientServiceRequest<CommentList>
IClientServiceRequest
Inherited Members
BloggerBaseServiceRequest<CommentList>.Xgafv
BloggerBaseServiceRequest<CommentList>.AccessToken
BloggerBaseServiceRequest<CommentList>.Alt
BloggerBaseServiceRequest<CommentList>.Callback
BloggerBaseServiceRequest<CommentList>.Fields
BloggerBaseServiceRequest<CommentList>.Key
BloggerBaseServiceRequest<CommentList>.OauthToken
BloggerBaseServiceRequest<CommentList>.PrettyPrint
BloggerBaseServiceRequest<CommentList>.QuotaUser
BloggerBaseServiceRequest<CommentList>.UploadType
BloggerBaseServiceRequest<CommentList>.UploadProtocol
ClientServiceRequest<CommentList>.Execute()
ClientServiceRequest<CommentList>.ExecuteAsStream()
ClientServiceRequest<CommentList>.ExecuteAsync()
ClientServiceRequest<CommentList>.ExecuteAsync(CancellationToken)
ClientServiceRequest<CommentList>.ExecuteAsStreamAsync()
ClientServiceRequest<CommentList>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<CommentList>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<CommentList>.GenerateRequestUri()
ClientServiceRequest<CommentList>.GetBody()
ClientServiceRequest<CommentList>.GetDefaultETagAction(String)
ClientServiceRequest<CommentList>.ETagAction
ClientServiceRequest<CommentList>.ModifyRequest
ClientServiceRequest<CommentList>.RequestParameters
ClientServiceRequest<CommentList>.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.Blogger.v3
Assembly: Google.Apis.Blogger.v3.dll
Syntax
public class ListRequest : BloggerBaseServiceRequest<CommentList>, IClientServiceRequest<CommentList>, IClientServiceRequest

Constructors

ListRequest(IClientService, String, String)

Constructs a new List request.

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

Properties

BlogId

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

EndDate

Declaration
[RequestParameter("endDate", RequestParameterType.Query)]
public virtual string EndDate { get; set; }
Property Value
Type Description
System.String

FetchBodies

Declaration
[RequestParameter("fetchBodies", RequestParameterType.Query)]
public virtual bool? FetchBodies { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

HttpMethod

Gets the HTTP method.

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

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.Blogger.v3.Data.CommentList>.MethodName

PageToken

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

PostId

Declaration
[RequestParameter("postId", RequestParameterType.Path)]
public virtual string PostId { get; }
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.Blogger.v3.Data.CommentList>.RestPath

StartDate

Declaration
[RequestParameter("startDate", RequestParameterType.Query)]
public virtual string StartDate { get; set; }
Property Value
Type Description
System.String

Status

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

View

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

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Blogger.v3.BloggerBaseServiceRequest<Google.Apis.Blogger.v3.Data.CommentList>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top