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

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

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
示例#3
0
 /// <summary>
 /// Adds the specified SalesQuoteLine to the collection via POST.
 /// </summary>
 /// <param name="salesQuoteLine">The SalesQuoteLine to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created SalesQuoteLine.</returns>
 public System.Threading.Tasks.Task <SalesQuoteLine> AddAsync(SalesQuoteLine salesQuoteLine, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <SalesQuoteLine>(salesQuoteLine, cancellationToken));
 }
示例#4
0
 /// <summary>
 /// Adds the specified SalesQuoteLine to the collection via POST.
 /// </summary>
 /// <param name="salesQuoteLine">The SalesQuoteLine to add.</param>
 /// <returns>The created SalesQuoteLine.</returns>
 public System.Threading.Tasks.Task <SalesQuoteLine> AddAsync(SalesQuoteLine salesQuoteLine)
 {
     return(this.AddAsync(salesQuoteLine, CancellationToken.None));
 }
示例#5
0
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="salesQuoteLineToInitialize">The <see cref="SalesQuoteLine"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(SalesQuoteLine salesQuoteLineToInitialize)
 {
 }
示例#6
0
 /// <summary>
 /// Updates the specified SalesQuoteLine using PATCH.
 /// </summary>
 /// <param name="salesQuoteLineToUpdate">The SalesQuoteLine to update.</param>
 /// <returns>The updated SalesQuoteLine.</returns>
 public System.Threading.Tasks.Task <SalesQuoteLine> UpdateAsync(SalesQuoteLine salesQuoteLineToUpdate)
 {
     return(this.UpdateAsync(salesQuoteLineToUpdate, CancellationToken.None));
 }