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

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

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