/// <summary> /// Updates the specified BookingCustomer using PATCH. /// </summary> /// <param name="bookingCustomerToUpdate">The BookingCustomer to update.</param> /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param> /// <exception cref="ClientException">Thrown when an object returned in a response is used for updating an object in Microsoft Graph.</exception> /// <returns>The updated BookingCustomer.</returns> public async System.Threading.Tasks.Task <BookingCustomer> UpdateAsync(BookingCustomer bookingCustomerToUpdate, CancellationToken cancellationToken) { if (bookingCustomerToUpdate.AdditionalData != null) { if (bookingCustomerToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || bookingCustomerToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, bookingCustomerToUpdate.GetType().Name) }); } } if (bookingCustomerToUpdate.AdditionalData != null) { if (bookingCustomerToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || bookingCustomerToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, bookingCustomerToUpdate.GetType().Name) }); } } this.ContentType = "application/json"; this.Method = "PATCH"; var updatedEntity = await this.SendAsync <BookingCustomer>(bookingCustomerToUpdate, cancellationToken).ConfigureAwait(false); this.InitializeCollectionProperties(updatedEntity); return(updatedEntity); }
/// <summary> /// Creates the specified BookingCustomer using POST. /// </summary> /// <param name="bookingCustomerToCreate">The BookingCustomer to create.</param> /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param> /// <returns>The created BookingCustomer.</returns> public async System.Threading.Tasks.Task <BookingCustomer> CreateAsync(BookingCustomer bookingCustomerToCreate, CancellationToken cancellationToken) { this.ContentType = "application/json"; this.Method = "POST"; var newEntity = await this.SendAsync <BookingCustomer>(bookingCustomerToCreate, cancellationToken).ConfigureAwait(false); this.InitializeCollectionProperties(newEntity); return(newEntity); }
/// <summary> /// Adds the specified BookingCustomer to the collection via POST. /// </summary> /// <param name="bookingCustomer">The BookingCustomer to add.</param> /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param> /// <returns>The created BookingCustomer.</returns> public System.Threading.Tasks.Task <BookingCustomer> AddAsync(BookingCustomer bookingCustomer, CancellationToken cancellationToken) { this.ContentType = "application/json"; this.Method = "POST"; return(this.SendAsync <BookingCustomer>(bookingCustomer, cancellationToken)); }
/// <summary> /// Adds the specified BookingCustomer to the collection via POST. /// </summary> /// <param name="bookingCustomer">The BookingCustomer to add.</param> /// <returns>The created BookingCustomer.</returns> public System.Threading.Tasks.Task <BookingCustomer> AddAsync(BookingCustomer bookingCustomer) { return(this.AddAsync(bookingCustomer, CancellationToken.None)); }
/// <summary> /// Creates the specified BookingCustomer using POST. /// </summary> /// <param name="bookingCustomerToCreate">The BookingCustomer to create.</param> /// <returns>The created BookingCustomer.</returns> public System.Threading.Tasks.Task <BookingCustomer> CreateAsync(BookingCustomer bookingCustomerToCreate) { return(this.CreateAsync(bookingCustomerToCreate, CancellationToken.None)); }
/// <summary> /// Initializes any collection properties after deserialization, like next requests for paging. /// </summary> /// <param name="bookingCustomerToInitialize">The <see cref="BookingCustomer"/> with the collection properties to initialize.</param> private void InitializeCollectionProperties(BookingCustomer bookingCustomerToInitialize) { }