Show / Hide Table of Contents

Class PresentationsResource.BatchUpdateRequest

Applies one or more updates to the presentation. Each request is validated before being applied. If any request is not valid, then the entire request will fail and nothing will be applied. Some requests have replies to give you some information about how they are applied. Other requests do not need to return information; these each return an empty reply. The order of replies matches that of the requests. For example, suppose you call batchUpdate with four updates, and only the third one returns information. The response would have two empty replies: the reply to the third request, and another empty reply, in that order. Because other users may be editing the presentation, the presentation might not exactly reflect your changes: your changes may be altered with respect to collaborator changes. If there are no collaborators, the presentation should reflect your changes. In any case, the updates in your request are guaranteed to be applied together atomically.

Inheritance
System.Object
Google.Apis.Requests.ClientServiceRequest
Google.Apis.Requests.ClientServiceRequest<BatchUpdatePresentationResponse>
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>
PresentationsResource.BatchUpdateRequest
Implements
Google.Apis.Requests.IClientServiceRequest<BatchUpdatePresentationResponse>
Google.Apis.Requests.IClientServiceRequest
Inherited Members
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.Xgafv
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.AccessToken
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.Alt
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.Callback
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.Fields
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.Key
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.OauthToken
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.PrettyPrint
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.QuotaUser
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.UploadType
SlidesBaseServiceRequest<BatchUpdatePresentationResponse>.UploadProtocol
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.Execute()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.ExecuteAsStream()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.ExecuteAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.ExecuteAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.ExecuteAsStreamAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.ExecuteAsStreamAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.CreateRequest(System.Nullable<System.Boolean>)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.GenerateRequestUri()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.GetDefaultETagAction(System.String)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.ETagAction
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.ModifyRequest
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.ValidateParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.RequestParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.Service
Google.Apis.Requests.ClientServiceRequest._unsuccessfulResponseHandlers
Google.Apis.Requests.ClientServiceRequest._exceptionHandlers
Google.Apis.Requests.ClientServiceRequest._executeInterceptors
Google.Apis.Requests.ClientServiceRequest.AddUnsuccessfulResponseHandler(Google.Apis.Http.IHttpUnsuccessfulResponseHandler)
Google.Apis.Requests.ClientServiceRequest.AddExceptionHandler(Google.Apis.Http.IHttpExceptionHandler)
Google.Apis.Requests.ClientServiceRequest.AddExecuteInterceptor(Google.Apis.Http.IHttpExecuteInterceptor)
Google.Apis.Requests.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.Slides.v1
Assembly: Google.Apis.Slides.v1.dll
Syntax
public class BatchUpdateRequest : SlidesBaseServiceRequest<BatchUpdatePresentationResponse>, IClientServiceRequest<BatchUpdatePresentationResponse>, IClientServiceRequest

Constructors

BatchUpdateRequest(IClientService, BatchUpdatePresentationRequest, String)

Constructs a new BatchUpdate request.

Declaration
public BatchUpdateRequest(IClientService service, BatchUpdatePresentationRequest body, string presentationId)
Parameters
Type Name Description
Google.Apis.Services.IClientService service
BatchUpdatePresentationRequest body
System.String presentationId

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.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.Slides.v1.Data.BatchUpdatePresentationResponse>.MethodName

PresentationId

The presentation to apply the updates to.

Declaration
[RequestParameter("presentationId", RequestParameterType.Path)]
public virtual string PresentationId { 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.Slides.v1.Data.BatchUpdatePresentationResponse>.RestPath

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.Slides.v1.Data.BatchUpdatePresentationResponse>.GetBody()

InitParameters()

Initializes BatchUpdate parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.Slides.v1.SlidesBaseServiceRequest<Google.Apis.Slides.v1.Data.BatchUpdatePresentationResponse>.InitParameters()

Implements

Google.Apis.Requests.IClientServiceRequest<TResponse>
Google.Apis.Requests.IClientServiceRequest
In This Article
Back to top