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