/// <summary> /// Creates the specified Windows81GeneralConfiguration using POST. /// </summary> /// <param name="windows81GeneralConfigurationToCreate">The Windows81GeneralConfiguration to create.</param> /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param> /// <returns>The created Windows81GeneralConfiguration.</returns> public async System.Threading.Tasks.Task <Windows81GeneralConfiguration> CreateAsync(Windows81GeneralConfiguration windows81GeneralConfigurationToCreate, CancellationToken cancellationToken) { this.ContentType = "application/json"; this.Method = "POST"; var newEntity = await this.SendAsync <Windows81GeneralConfiguration>(windows81GeneralConfigurationToCreate, cancellationToken).ConfigureAwait(false); this.InitializeCollectionProperties(newEntity); return(newEntity); }
/// <summary> /// Initializes any collection properties after deserialization, like next requests for paging. /// </summary> /// <param name="windows81GeneralConfigurationToInitialize">The <see cref="Windows81GeneralConfiguration"/> with the collection properties to initialize.</param> private void InitializeCollectionProperties(Windows81GeneralConfiguration windows81GeneralConfigurationToInitialize) { }
/// <summary> /// Creates the specified Windows81GeneralConfiguration using POST. /// </summary> /// <param name="windows81GeneralConfigurationToCreate">The Windows81GeneralConfiguration to create.</param> /// <returns>The created Windows81GeneralConfiguration.</returns> public System.Threading.Tasks.Task <Windows81GeneralConfiguration> CreateAsync(Windows81GeneralConfiguration windows81GeneralConfigurationToCreate) { return(this.CreateAsync(windows81GeneralConfigurationToCreate, CancellationToken.None)); }
/// <summary> /// Updates the specified Windows81GeneralConfiguration using PATCH. /// </summary> /// <param name="windows81GeneralConfigurationToUpdate">The Windows81GeneralConfiguration 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 Windows81GeneralConfiguration.</returns> public async System.Threading.Tasks.Task <Windows81GeneralConfiguration> UpdateAsync(Windows81GeneralConfiguration windows81GeneralConfigurationToUpdate, CancellationToken cancellationToken) { if (windows81GeneralConfigurationToUpdate.AdditionalData != null) { if (windows81GeneralConfigurationToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || windows81GeneralConfigurationToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, windows81GeneralConfigurationToUpdate.GetType().Name) }); } } if (windows81GeneralConfigurationToUpdate.AdditionalData != null) { if (windows81GeneralConfigurationToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || windows81GeneralConfigurationToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, windows81GeneralConfigurationToUpdate.GetType().Name) }); } } this.ContentType = "application/json"; this.Method = "PATCH"; var updatedEntity = await this.SendAsync <Windows81GeneralConfiguration>(windows81GeneralConfigurationToUpdate, cancellationToken).ConfigureAwait(false); this.InitializeCollectionProperties(updatedEntity); return(updatedEntity); }