/// <summary>
 /// Adds the specified RestrictedAppsViolation to the collection via POST.
 /// </summary>
 /// <param name="restrictedAppsViolation">The RestrictedAppsViolation to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created RestrictedAppsViolation.</returns>
 public System.Threading.Tasks.Task <RestrictedAppsViolation> AddAsync(RestrictedAppsViolation restrictedAppsViolation, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     return(this.SendAsync <RestrictedAppsViolation>(restrictedAppsViolation, cancellationToken));
 }
 /// <summary>
 /// Adds the specified RestrictedAppsViolation to the collection via POST.
 /// </summary>
 /// <param name="restrictedAppsViolation">The RestrictedAppsViolation to add.</param>
 /// <returns>The created RestrictedAppsViolation.</returns>
 public System.Threading.Tasks.Task <RestrictedAppsViolation> AddAsync(RestrictedAppsViolation restrictedAppsViolation)
 {
     return(this.AddAsync(restrictedAppsViolation, CancellationToken.None));
 }
Example #3
0
        /// <summary>
        /// Creates the specified RestrictedAppsViolation using POST.
        /// </summary>
        /// <param name="restrictedAppsViolationToCreate">The RestrictedAppsViolation to create.</param>
        /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
        /// <returns>The created RestrictedAppsViolation.</returns>
        public async System.Threading.Tasks.Task <RestrictedAppsViolation> CreateAsync(RestrictedAppsViolation restrictedAppsViolationToCreate, CancellationToken cancellationToken)
        {
            this.ContentType = "application/json";
            this.Method      = "POST";
            var newEntity = await this.SendAsync <RestrictedAppsViolation>(restrictedAppsViolationToCreate, cancellationToken).ConfigureAwait(false);

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

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