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

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

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