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