corelibraries-devexpress-dot-utils-68123af3.md
Contains options used to fix issues on Microsoft Azure websites.
Namespace : DevExpress.Utils
Assembly : DevExpress.Data.v25.2.dll
NuGet Package : DevExpress.Data
public static class AzureCompatibility
Public Module AzureCompatibility
Set the static AzureCompatibility.Enable property to true at the application startup to resolve issues with rendering and printing on Microsoft Azure websites.
To use the AzureCompatibility.Enable property in your code, add a reference to the DevExpress.Data.v25.2.dll assembly to your project.
Important
Starting from v24.2, the following products use the Skia-based drawing engine when hosting on Azure (Linux):
The AzureCompatibility.Enable no longer affects these products.
To use Office File API products in applications hosted on Microsoft Azure websites, set the AzureCompatibility.Enable property to true at application startup:
protected void Application_Start(object sender, EventArgs e) {
DevExpress.Utils.AzureCompatibility.Enable = true;
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env) {
// ...
DevExpress.Utils.AzureCompatibility.Enable = true;
}
Take into account the following limitations when you host Reporting applications on Microsoft Azure websites:
ImageType property value.Object AzureCompatibility
See Also