/// <summary> /// Initializes any collection properties after deserialization, like next requests for paging. /// </summary> /// <param name="appConsentApprovalRouteToInitialize">The <see cref="AppConsentApprovalRoute"/> with the collection properties to initialize.</param> private void InitializeCollectionProperties(AppConsentApprovalRoute appConsentApprovalRouteToInitialize) { if (appConsentApprovalRouteToInitialize != null && appConsentApprovalRouteToInitialize.AdditionalData != null) { if (appConsentApprovalRouteToInitialize.AppConsentRequests != null && appConsentApprovalRouteToInitialize.AppConsentRequests.CurrentPage != null) { appConsentApprovalRouteToInitialize.AppConsentRequests.AdditionalData = appConsentApprovalRouteToInitialize.AdditionalData; object nextPageLink; appConsentApprovalRouteToInitialize.AdditionalData.TryGetValue("*****@*****.**", out nextPageLink); var nextPageLinkString = nextPageLink as string; if (!string.IsNullOrEmpty(nextPageLinkString)) { appConsentApprovalRouteToInitialize.AppConsentRequests.InitializeNextPageRequest( this.Client, nextPageLinkString); } } } }
/// <summary> /// Creates the specified AppConsentApprovalRoute using POST. /// </summary> /// <param name="appConsentApprovalRouteToCreate">The AppConsentApprovalRoute to create.</param> /// <param name="cancellationToken">The <see cref="CancellationToken"/> for the request.</param> /// <returns>The created AppConsentApprovalRoute.</returns> public async System.Threading.Tasks.Task <AppConsentApprovalRoute> CreateAsync(AppConsentApprovalRoute appConsentApprovalRouteToCreate, CancellationToken cancellationToken) { this.ContentType = "application/json"; this.Method = "POST"; var newEntity = await this.SendAsync <AppConsentApprovalRoute>(appConsentApprovalRouteToCreate, cancellationToken).ConfigureAwait(false); this.InitializeCollectionProperties(newEntity); return(newEntity); }
/// <summary> /// Creates the specified AppConsentApprovalRoute using POST. /// </summary> /// <param name="appConsentApprovalRouteToCreate">The AppConsentApprovalRoute to create.</param> /// <returns>The created AppConsentApprovalRoute.</returns> public System.Threading.Tasks.Task <AppConsentApprovalRoute> CreateAsync(AppConsentApprovalRoute appConsentApprovalRouteToCreate) { return(this.CreateAsync(appConsentApprovalRouteToCreate, CancellationToken.None)); }
/// <summary> /// Updates the specified AppConsentApprovalRoute using PATCH. /// </summary> /// <param name="appConsentApprovalRouteToUpdate">The AppConsentApprovalRoute 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 AppConsentApprovalRoute.</returns> public async System.Threading.Tasks.Task <AppConsentApprovalRoute> UpdateAsync(AppConsentApprovalRoute appConsentApprovalRouteToUpdate, CancellationToken cancellationToken) { if (appConsentApprovalRouteToUpdate.AdditionalData != null) { if (appConsentApprovalRouteToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || appConsentApprovalRouteToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, appConsentApprovalRouteToUpdate.GetType().Name) }); } } if (appConsentApprovalRouteToUpdate.AdditionalData != null) { if (appConsentApprovalRouteToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.ResponseHeaders) || appConsentApprovalRouteToUpdate.AdditionalData.ContainsKey(Constants.HttpPropertyNames.StatusCode)) { throw new ClientException( new Error { Code = GeneratedErrorConstants.Codes.NotAllowed, Message = String.Format(GeneratedErrorConstants.Messages.ResponseObjectUsedForUpdate, appConsentApprovalRouteToUpdate.GetType().Name) }); } } this.ContentType = "application/json"; this.Method = "PATCH"; var updatedEntity = await this.SendAsync <AppConsentApprovalRoute>(appConsentApprovalRouteToUpdate, cancellationToken).ConfigureAwait(false); this.InitializeCollectionProperties(updatedEntity); return(updatedEntity); }