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