示例#1
0
        /// <summary>
        /// Creates the specified AuthenticationFlowsPolicy using POST.
        /// </summary>
        /// <param name="authenticationFlowsPolicyToCreate">The AuthenticationFlowsPolicy to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created AuthenticationFlowsPolicy.</returns>
        public async System.Threading.Tasks.Task <AuthenticationFlowsPolicy> CreateAsync(AuthenticationFlowsPolicy authenticationFlowsPolicyToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <AuthenticationFlowsPolicy>(authenticationFlowsPolicyToCreate, cancellationToken).ConfigureAwait(false);

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

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