Beispiel #1
0
        /// <summary>
        /// Updates the specified Office365ActiveUserDetail using PATCH.
        /// </summary>
        /// <param name="office365ActiveUserDetailToUpdate">The Office365ActiveUserDetail 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 Office365ActiveUserDetail.</returns>
        public async System.Threading.Tasks.Task <Office365ActiveUserDetail> UpdateAsync(Office365ActiveUserDetail office365ActiveUserDetailToUpdate, CancellationToken cancellationToken)
        {
            if (office365ActiveUserDetailToUpdate.AdditionalData != null)
            {
                if (office365ActiveUserDetailToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    office365ActiveUserDetailToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, office365ActiveUserDetailToUpdate.GetType().Name)
                    });
                }
            }
            if (office365ActiveUserDetailToUpdate.AdditionalData != null)
            {
                if (office365ActiveUserDetailToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    office365ActiveUserDetailToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, office365ActiveUserDetailToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <Office365ActiveUserDetail>(office365ActiveUserDetailToUpdate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(updatedEntity);
            return(updatedEntity);
        }