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