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

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

            this.InitializeCollectionProperties(updatedEntity);
            return(updatedEntity);
        }
 /// <summary>
 /// Adds the specified RemoteAssistancePartner to the collection via POST.
 /// </summary>
 /// <param name="remoteAssistancePartner">The RemoteAssistancePartner to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created RemoteAssistancePartner.</returns>
 public System.Threading.Tasks.Task <RemoteAssistancePartner> AddAsync(RemoteAssistancePartner remoteAssistancePartner, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <RemoteAssistancePartner>(remoteAssistancePartner, cancellationToken));
 }
 /// <summary>
 /// Adds the specified RemoteAssistancePartner to the collection via POST.
 /// </summary>
 /// <param name="remoteAssistancePartner">The RemoteAssistancePartner to add.</param>
 /// <returns>The created RemoteAssistancePartner.</returns>
 public System.Threading.Tasks.Task <RemoteAssistancePartner> AddAsync(RemoteAssistancePartner remoteAssistancePartner)
 {
     return(this.AddAsync(remoteAssistancePartner, CancellationToken.None));
 }