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

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

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
 /// <summary>
 /// Creates the specified PersonName using POST.
 /// </summary>
 /// <param name="personNameToCreate">The PersonName to create.</param>
 /// <returns>The created PersonName.</returns>
 public System.Threading.Tasks.Task <PersonName> CreateAsync(PersonName personNameToCreate)
 {
     return(this.CreateAsync(personNameToCreate, CancellationToken.None));
 }
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="personNameToInitialize">The <see cref="PersonName"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(PersonName personNameToInitialize)
 {
 }
Beispiel #5
0
 /// <summary>
 /// Adds the specified PersonName to the collection via POST.
 /// </summary>
 /// <param name="personName">The PersonName to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created PersonName.</returns>
 public System.Threading.Tasks.Task <PersonName> AddAsync(PersonName personName, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <PersonName>(personName, cancellationToken));
 }
Beispiel #6
0
 /// <summary>
 /// Adds the specified PersonName to the collection via POST.
 /// </summary>
 /// <param name="personName">The PersonName to add.</param>
 /// <returns>The created PersonName.</returns>
 public System.Threading.Tasks.Task <PersonName> AddAsync(PersonName personName)
 {
     return(this.AddAsync(personName, CancellationToken.None));
 }