The Diagnostics Module provides tools to help identify and resolve issues in your XAF application during development or in production. Its primary feature, Controller Management, allows you to remotely view, enable, or disable any controller in the application at runtime.
This is especially useful for diagnosing behavior conflicts, UI issues, or performance problems that might stem from custom or third-party controllers. Instead of modifying code and redeploying, you can quickly isolate and test the impact of individual controllers.
The Diagnostics Module provides tools to help identify and resolve issues in your XAF application during development or in production. Its primary feature, Controller Management, allows you to remotely view, enable, or disable any controller in the application at runtime.
This is especially useful for diagnosing behavior conflicts, UI issues, or performance problems that might stem from custom or third-party controllers. Instead of modifying code and redeploying, you can quickly isolate and test the impact of individual controllers.
Install-Package 'Llamachant.ExpressApp.Diagnostics'
services.AddXaf(Configuration, builder => {
builder.UseApplication<ExpressAppBlazorApplication>();
builder.Modules
.AddLlamachantFrameworkDiagnosticsModule(options =>
{
options.EnableControllerManagement = true;
});
});
Install-Package 'Llamachant.ExpressApp.Diagnostics'
services.AddXaf(Configuration, builder => {
builder.UseApplication<ExpressAppBlazorApplication>();
builder.Modules
.AddLlamachantFrameworkDiagnosticsModule(options =>
{
options.EnableControllerManagement = true;
});
});
The main feature of this module is the Show Controller Settings action. This action lives in the Tools container and enables viewing, enabling, and disabling all controllers in your application.
Key features include:
The main feature of this module is the Show Controller Settings action. This action lives in the Tools container and enables viewing, enabling, and disabling all controllers in your application.
Key features include: