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

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
コード例 #2
0
 /// <summary>
 /// Creates the specified ComanagementEligibleDevice using POST.
 /// </summary>
 /// <param name="comanagementEligibleDeviceToCreate">The ComanagementEligibleDevice to create.</param>
 /// <returns>The created ComanagementEligibleDevice.</returns>
 public System.Threading.Tasks.Task <ComanagementEligibleDevice> CreateAsync(ComanagementEligibleDevice comanagementEligibleDeviceToCreate)
 {
     return(this.CreateAsync(comanagementEligibleDeviceToCreate, CancellationToken.None));
 }
コード例 #3
0
        /// <summary>
        /// Updates the specified ComanagementEligibleDevice using PATCH.
        /// </summary>
        /// <param name="comanagementEligibleDeviceToUpdate">The ComanagementEligibleDevice 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 ComanagementEligibleDevice.</returns>
        public async System.Threading.Tasks.Task <ComanagementEligibleDevice> UpdateAsync(ComanagementEligibleDevice comanagementEligibleDeviceToUpdate, CancellationToken cancellationToken)
        {
            if (comanagementEligibleDeviceToUpdate.AdditionalData != null)
            {
                if (comanagementEligibleDeviceToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    comanagementEligibleDeviceToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, comanagementEligibleDeviceToUpdate.GetType().Name)
                    });
                }
            }
            if (comanagementEligibleDeviceToUpdate.AdditionalData != null)
            {
                if (comanagementEligibleDeviceToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    comanagementEligibleDeviceToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, comanagementEligibleDeviceToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <ComanagementEligibleDevice>(comanagementEligibleDeviceToUpdate, cancellationToken).ConfigureAwait(false);

            this.InitializeCollectionProperties(updatedEntity);
            return(updatedEntity);
        }
コード例 #4
0
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="comanagementEligibleDeviceToInitialize">The <see cref="ComanagementEligibleDevice"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(ComanagementEligibleDevice comanagementEligibleDeviceToInitialize)
 {
 }
コード例 #5
0
 /// <summary>
 /// Adds the specified ComanagementEligibleDevice to the collection via POST.
 /// </summary>
 /// <param name="comanagementEligibleDevice">The ComanagementEligibleDevice to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created ComanagementEligibleDevice.</returns>
 public System.Threading.Tasks.Task <ComanagementEligibleDevice> AddAsync(ComanagementEligibleDevice comanagementEligibleDevice, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <ComanagementEligibleDevice>(comanagementEligibleDevice, cancellationToken));
 }