Exemplo n.º 1
0
        /// <summary>
        /// Creates the specified SocialIdentityProvider using POST.
        /// </summary>
        /// <param name="socialIdentityProviderToCreate">The SocialIdentityProvider to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created SocialIdentityProvider.</returns>
        public async System.Threading.Tasks.Task <SocialIdentityProvider> CreateAsync(SocialIdentityProvider socialIdentityProviderToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <SocialIdentityProvider>(socialIdentityProviderToCreate, cancellationToken).ConfigureAwait(false);

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

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