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

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

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
Example #3
0
 /// <summary>
 /// Creates the specified WorkbookRangeBorder using POST.
 /// </summary>
 /// <param name="workbookRangeBorderToCreate">The WorkbookRangeBorder to create.</param>
 /// <returns>The created WorkbookRangeBorder.</returns>
 public System.Threading.Tasks.Task <WorkbookRangeBorder> CreateAsync(WorkbookRangeBorder workbookRangeBorderToCreate)
 {
     return(this.CreateAsync(workbookRangeBorderToCreate, CancellationToken.None));
 }
Example #4
0
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="workbookRangeBorderToInitialize">The <see cref="WorkbookRangeBorder"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(WorkbookRangeBorder workbookRangeBorderToInitialize)
 {
 }
 /// <summary>
 /// Issues the PUT request.
 /// </summary>
 /// <param name="workbookrangeborder">The WorkbookRangeBorder object to update.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The task to await for async call.</returns>
 public System.Threading.Tasks.Task <WorkbookRangeBorder> PutAsync(WorkbookRangeBorder workbookrangeborder,
                                                                   CancellationToken cancellationToken)
 {
     this.Method = "PUT";
     return(this.SendAsync <WorkbookRangeBorder>(workbookrangeborder, cancellationToken));
 }
 /// <summary>
 /// Issues the PUT request.
 /// </summary>
 /// <param name="workbookrangeborder">The WorkbookRangeBorder object to update.</param>
 /// <returns>The task to await for async call.</returns>
 public System.Threading.Tasks.Task <WorkbookRangeBorder> PutAsync(WorkbookRangeBorder workbookrangeborder)
 {
     return(this.PutAsync(workbookrangeborder, CancellationToken.None));
 }
Example #7
0
 /// <summary>
 /// Adds the specified WorkbookRangeBorder to the collection via POST.
 /// </summary>
 /// <param name="workbookRangeBorder">The WorkbookRangeBorder to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created WorkbookRangeBorder.</returns>
 public System.Threading.Tasks.Task <WorkbookRangeBorder> AddAsync(WorkbookRangeBorder workbookRangeBorder, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <WorkbookRangeBorder>(workbookRangeBorder, cancellationToken));
 }