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