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

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

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