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