Class PagesResource.PatchRequest
Inheritance
PagesResource.PatchRequest
Assembly: Google.Apis.Blogger.v3.dll
Syntax
public class PagesResource.PatchRequest : BloggerBaseServiceRequest<Page>, IClientServiceRequest<Page>, IClientServiceRequest
Constructors
PatchRequest(IClientService, Page, string, string)
Constructs a new Patch request.
Declaration
public PatchRequest(IClientService service, Page body, string blogId, string pageId)
Parameters
Properties
BlogId
Declaration
[RequestParameter("blogId", RequestParameterType.Path)]
public virtual string BlogId { get; }
Property Value
HttpMethod
Declaration
public override string HttpMethod { get; }
Property Value
Overrides
MethodName
Declaration
public override string MethodName { get; }
Property Value
Overrides
PageId
Declaration
[RequestParameter("pageId", RequestParameterType.Path)]
public virtual string PageId { get; }
Property Value
Publish
Declaration
[RequestParameter("publish", RequestParameterType.Query)]
public virtual bool? Publish { get; set; }
Property Value
RestPath
Declaration
public override string RestPath { get; }
Property Value
Overrides
Revert
Declaration
[RequestParameter("revert", RequestParameterType.Query)]
public virtual bool? Revert { get; set; }
Property Value
Methods
GetBody()
Returns the body of the request.
Declaration
protected override object GetBody()
Returns
Overrides
InitParameters()
Initializes Patch parameter list.
Declaration
protected override void InitParameters()
Overrides
Implements