Show / Hide Table of Contents

Class AclResource.UpdateRequest

Updates an access control rule.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<AclRule>
CalendarBaseServiceRequest<AclRule>
AclResource.UpdateRequest
Implements
IClientServiceRequest<AclRule>
IClientServiceRequest
Inherited Members
CalendarBaseServiceRequest<AclRule>.Alt
CalendarBaseServiceRequest<AclRule>.Fields
CalendarBaseServiceRequest<AclRule>.Key
CalendarBaseServiceRequest<AclRule>.OauthToken
CalendarBaseServiceRequest<AclRule>.PrettyPrint
CalendarBaseServiceRequest<AclRule>.QuotaUser
CalendarBaseServiceRequest<AclRule>.UserIp
ClientServiceRequest<AclRule>.Execute()
ClientServiceRequest<AclRule>.ExecuteAsStream()
ClientServiceRequest<AclRule>.ExecuteAsync()
ClientServiceRequest<AclRule>.ExecuteAsync(CancellationToken)
ClientServiceRequest<AclRule>.ExecuteAsStreamAsync()
ClientServiceRequest<AclRule>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<AclRule>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<AclRule>.GenerateRequestUri()
ClientServiceRequest<AclRule>.GetDefaultETagAction(String)
ClientServiceRequest<AclRule>.ETagAction
ClientServiceRequest<AclRule>.ModifyRequest
ClientServiceRequest<AclRule>.RequestParameters
ClientServiceRequest<AclRule>.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.Calendar.v3
Assembly: Google.Apis.Calendar.v3.dll
Syntax
public class UpdateRequest : CalendarBaseServiceRequest<AclRule>, IClientServiceRequest<AclRule>, IClientServiceRequest

Constructors

UpdateRequest(IClientService, AclRule, String, String)

Constructs a new Update request.

Declaration
public UpdateRequest(IClientService service, AclRule body, string calendarId, string ruleId)
Parameters
Type Name Description
IClientService service
AclRule body
System.String calendarId
System.String ruleId

Properties

CalendarId

Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword.

Declaration
public virtual string CalendarId { 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.Calendar.v3.Data.AclRule>.HttpMethod

MethodName

Gets the method name.

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

RestPath

Gets the REST path.

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

RuleId

ACL rule identifier.

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

SendNotifications

Whether to send notifications about the calendar sharing change. Note that there are no notifications on access removal. Optional. The default is True.

Declaration
public virtual Nullable<bool> SendNotifications { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

Methods

GetBody()

Returns the body of the request.

Declaration
protected override object GetBody()
Returns
Type Description
System.Object
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Calendar.v3.Data.AclRule>.GetBody()

InitParameters()

Initializes Update parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Calendar.v3.CalendarBaseServiceRequest<Google.Apis.Calendar.v3.Data.AclRule>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
Back to top