コード例 #1
0
 /// <summary>
 /// Adds the specified MobileAppRelationship to the collection via POST.
 /// </summary>
 /// <param name="mobileAppRelationship">The MobileAppRelationship to add.</param>
 /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param>
 /// <returns>The created MobileAppRelationship.</returns>
 public System.Threading.Tasks.Task <MobileAppRelationship> AddAsync(MobileAppRelationship mobileAppRelationship, CancellationToken cancellationToken)
 {
     this.ContentType = "application/json";
     this.Method      = "POST";
     mobileAppRelationship.ODataType = string.Concat("#", StringHelper.ConvertTypeToLowerCamelCase(mobileAppRelationship.GetType().FullName));
     return(this.SendAsync <MobileAppRelationship>(mobileAppRelationship, cancellationToken));
 }
        /// <summary>
        /// Updates the specified MobileAppRelationship using PATCH.
        /// </summary>
        /// <param name="mobileAppRelationshipToUpdate">The MobileAppRelationship 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 MobileAppRelationship.</returns>
        public async System.Threading.Tasks.Task <MobileAppRelationship> UpdateAsync(MobileAppRelationship mobileAppRelationshipToUpdate, CancellationToken cancellationToken)
        {
            if (mobileAppRelationshipToUpdate.AdditionalData != null)
            {
                if (mobileAppRelationshipToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    mobileAppRelationshipToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, mobileAppRelationshipToUpdate.GetType().Name)
                    });
                }
            }
            if (mobileAppRelationshipToUpdate.AdditionalData != null)
            {
                if (mobileAppRelationshipToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) ||
                    mobileAppRelationshipToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode))
                {
                    throw new ClientException(
                              new Error
                    {
                        Code    = GeneratedErrorConstants.Codes.NotAllowed,
                        Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, mobileAppRelationshipToUpdate.GetType().Name)
                    });
                }
            }
            this.ContentType = "application/json";
            this.Method      = "PATCH";
            var updatedEntity = await this.SendAsync <MobileAppRelationship>(mobileAppRelationshipToUpdate, cancellationToken).ConfigureAwait(false);

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

            this.InitializeCollectionProperties(newEntity);
            return(newEntity);
        }
コード例 #4
0
 /// <summary>
 /// Adds the specified MobileAppRelationship to the collection via POST.
 /// </summary>
 /// <param name="mobileAppRelationship">The MobileAppRelationship to add.</param>
 /// <returns>The created MobileAppRelationship.</returns>
 public System.Threading.Tasks.Task <MobileAppRelationship> AddAsync(MobileAppRelationship mobileAppRelationship)
 {
     return(this.AddAsync(mobileAppRelationship, CancellationToken.None));
 }
 /// <summary>
 /// Creates the specified MobileAppRelationship using POST.
 /// </summary>
 /// <param name="mobileAppRelationshipToCreate">The MobileAppRelationship to create.</param>
 /// <returns>The created MobileAppRelationship.</returns>
 public System.Threading.Tasks.Task <MobileAppRelationship> CreateAsync(MobileAppRelationship mobileAppRelationshipToCreate)
 {
     return(this.CreateAsync(mobileAppRelationshipToCreate, CancellationToken.None));
 }
 /// <summary>
 /// Initializes any collection properties after deserialization, like next requests for paging.
 /// </summary>
 /// <param name="mobileAppRelationshipToInitialize">The <see cref="MobileAppRelationship"/> with the collection properties to initialize.</param>
 private void InitializeCollectionProperties(MobileAppRelationship mobileAppRelationshipToInitialize)
 {
 }