/// <summary>
        /// Updates the specified UserPFXCertificate using PATCH.
        /// </summary>
        /// <param name="userPFXCertificateToUpdate">The UserPFXCertificate 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 UserPFXCertificate.</returns>
        public async System.Threading.Tasks.Task <UserPFXCertificate> UpdateAsync(UserPFXCertificate userPFXCertificateToUpdate, CancellationToken cancellationToken)
        {
            if (userPFXCertificateToUpdate.AdditionalData != null)
            {
                if (userPFXCertificateToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    userPFXCertificateToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, userPFXCertificateToUpdate.GetType().Name)
                    });
                }
            }
            if (userPFXCertificateToUpdate.AdditionalData != null)
            {
                if (userPFXCertificateToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    userPFXCertificateToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, userPFXCertificateToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <UserPFXCertificate>(userPFXCertificateToUpdate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(updatedEntity);
            return(updatedEntity);
        }
        /// <summary>
        /// Creates the specified UserPFXCertificate using POST.
        /// </summary>
        /// <param name="userPFXCertificateToCreate">The UserPFXCertificate to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created UserPFXCertificate.</returns>
        public async System.Threading.Tasks.Task <UserPFXCertificate> CreateAsync(UserPFXCertificate userPFXCertificateToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <UserPFXCertificate>(userPFXCertificateToCreate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
 /// <summary>
 /// Creates the specified UserPFXCertificate using POST.
 /// </summary>
 /// <param name="userPFXCertificateToCreate">The UserPFXCertificate to create.</param>
 /// <returns>The created UserPFXCertificate.</returns>
 public System.Threading.Tasks.Task <UserPFXCertificate> CreateAsync(UserPFXCertificate userPFXCertificateToCreate)
 {
     return(this.CreateAsync(userPFXCertificateToCreate, CancellationToken.None));
 }
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="userPFXCertificateToInitialize">The <see cref="UserPFXCertificate"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(UserPFXCertificate userPFXCertificateToInitialize)
 {
 }
 /// <summary>
 /// Adds the specified UserPFXCertificate to the collection via POST.
 /// </summary>
 /// <param name="userPFXCertificate">The UserPFXCertificate to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created UserPFXCertificate.</returns>
 public System.Threading.Tasks.Task <UserPFXCertificate> AddAsync(UserPFXCertificate userPFXCertificate, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <UserPFXCertificate>(userPFXCertificate, cancellationToken));
 }