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

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

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

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
Example #4
0
 /// <summary>
 /// Creates the specified OnenotePage using POST and returns a <see cref="GraphResponse{OnenotePage}"/> object.
 /// </summary>
 /// <param name="onenotePageToCreate">The OnenotePage to create.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The <see cref="GraphResponse{OnenotePage}"/> object of the request.</returns>
 public System.Threading.Tasks.Task <GraphResponse <OnenotePage> > CreateResponseAsync(OnenotePage onenotePageToCreate, CancellationToken cancellationToken = default)
 {
     this.ContentType = CoreConstants.MimeTypeNames.Application.Json;
     this.Method      = HttpMethods.POST;
     return(this.SendAsyncWithGraphResponse <OnenotePage>(onenotePageToCreate, cancellationToken));
 }
Example #5
0
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="onenotePageToInitialize">The <see cref="OnenotePage"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(OnenotePage onenotePageToInitialize)
 {
 }
Example #6
0
 /// <summary>
 /// Creates the specified OnenotePage using POST.
 /// </summary>
 /// <param name="onenotePageToCreate">The OnenotePage to create.</param>
 /// <returns>The created OnenotePage.</returns>
 public System.Threading.Tasks.Task <OnenotePage> CreateAsync(OnenotePage onenotePageToCreate)
 {
     return(this.CreateAsync(onenotePageToCreate, CancellationToken.None));
 }
Example #7
0
 /// <summary>
 /// Adds the specified OnenotePage to the collection via POST.
 /// </summary>
 /// <param name="onenotePage">The OnenotePage to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created OnenotePage.</returns>
 public System.Threading.Tasks.Task <OnenotePage> AddAsync(OnenotePage onenotePage, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <OnenotePage>(onenotePage, cancellationToken));
 }
Example #8
0
 /// <summary>
 /// Adds the specified OnenotePage to the collection via POST.
 /// </summary>
 /// <param name="onenotePage">The OnenotePage to add.</param>
 /// <returns>The created OnenotePage.</returns>
 public System.Threading.Tasks.Task <OnenotePage> AddAsync(OnenotePage onenotePage)
 {
     return(this.AddAsync(onenotePage, CancellationToken.None));
 }