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