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

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

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