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