/// <summary>
 /// Adds the specified DeviceAppManagementTask to the collection via POST.
 /// </summary>
 /// <param name="deviceAppManagementTask">The DeviceAppManagementTask to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created DeviceAppManagementTask.</returns>
 public System.Threading.Tasks.Task <DeviceAppManagementTask> AddAsync(DeviceAppManagementTask deviceAppManagementTask, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <DeviceAppManagementTask>(deviceAppManagementTask, cancellationToken));
 }
 /// <summary>
 /// Adds the specified DeviceAppManagementTask to the collection via POST.
 /// </summary>
 /// <param name="deviceAppManagementTask">The DeviceAppManagementTask to add.</param>
 /// <returns>The created DeviceAppManagementTask.</returns>
 public System.Threading.Tasks.Task <DeviceAppManagementTask> AddAsync(DeviceAppManagementTask deviceAppManagementTask)
 {
     return(this.AddAsync(deviceAppManagementTask, CancellationToken.None));
 }
        /// <summary>
        /// Creates the specified DeviceAppManagementTask using POST.
        /// </summary>
        /// <param name="deviceAppManagementTaskToCreate">The DeviceAppManagementTask to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created DeviceAppManagementTask.</returns>
        public async System.Threading.Tasks.Task <DeviceAppManagementTask> CreateAsync(DeviceAppManagementTask deviceAppManagementTaskToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <DeviceAppManagementTask>(deviceAppManagementTaskToCreate, cancellationToken).ConfigureAwait(false);

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

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