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

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

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
Beispiel #3
0
        /// <summary>
        /// Initializes any collection properties after deserialization, like next requests for paging.
        /// </summary>
        /// <param name="teamworkToInitialize">The <see cref="Teamwork"/> with the collection properties to initialize.</param>
        private void InitializeCollectionProperties(Teamwork teamworkToInitialize)
        {
            if (teamworkToInitialize != null && teamworkToInitialize.AdditionalData != null)
            {
                if (teamworkToInitialize.WorkforceIntegrations != null && teamworkToInitialize.WorkforceIntegrations.CurrentPage != null)
                {
                    teamworkToInitialize.WorkforceIntegrations.AdditionalData = teamworkToInitialize.AdditionalData;

                    object nextPageLink;
                    teamworkToInitialize.AdditionalData.TryGetValue("*****@*****.**", out nextPageLink);
                    var nextPageLinkString = nextPageLink as string;

                    if (!string.IsNullOrEmpty(nextPageLinkString))
                    {
                        teamworkToInitialize.WorkforceIntegrations.InitializeNextPageRequest(
                            this.Client,
                            nextPageLinkString);
                    }
                }
            }
        }
Beispiel #4
0
 /// <summary>
 /// Creates the specified Teamwork using POST.
 /// </summary>
 /// <param name="teamworkToCreate">The Teamwork to create.</param>
 /// <returns>The created Teamwork.</returns>
 public System.Threading.Tasks.Task <Teamwork> CreateAsync(Teamwork teamworkToCreate)
 {
     return(this.CreateAsync(teamworkToCreate, CancellationToken.None));
 }