示例#1
0
 /// <summary>
 /// Adds the specified AuthenticationMethodTarget to the collection via POST.
 /// </summary>
 /// <param name="authenticationMethodTarget">The AuthenticationMethodTarget to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created AuthenticationMethodTarget.</returns>
 public System.Threading.Tasks.Task <AuthenticationMethodTarget> AddAsync(AuthenticationMethodTarget authenticationMethodTarget, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <AuthenticationMethodTarget>(authenticationMethodTarget, cancellationToken));
 }
示例#2
0
 /// <summary>
 /// Adds the specified AuthenticationMethodTarget to the collection via POST.
 /// </summary>
 /// <param name="authenticationMethodTarget">The AuthenticationMethodTarget to add.</param>
 /// <returns>The created AuthenticationMethodTarget.</returns>
 public System.Threading.Tasks.Task <AuthenticationMethodTarget> AddAsync(AuthenticationMethodTarget authenticationMethodTarget)
 {
     return(this.AddAsync(authenticationMethodTarget, CancellationToken.None));
 }
示例#3
0
        /// <summary>
        /// Creates the specified AuthenticationMethodTarget using POST.
        /// </summary>
        /// <param name="authenticationMethodTargetToCreate">The AuthenticationMethodTarget to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created AuthenticationMethodTarget.</returns>
        public async System.Threading.Tasks.Task <AuthenticationMethodTarget> CreateAsync(AuthenticationMethodTarget authenticationMethodTargetToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <AuthenticationMethodTarget>(authenticationMethodTargetToCreate, cancellationToken).ConfigureAwait(false);

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

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