[]
Configures middleware for the ActiveReports viewer API.
public static HttpApplication UseReporting(this HttpApplication builder, Action<ReportingSettings> configure = null)
Type | Name | Description |
---|---|---|
HttpApplication | builder | A HttpApplication object to configure. |
Action<ReportingSettings> | configure | An Action<T> object to configure the report viewer.
This parameter is optional and can be |
Type | Description |
---|---|
HttpApplication | A HttpApplication object so that additional calls can be chained. |
this.UseReporting(settings =>
{
settings.UseFileStore(new DirectoryInfo("/path/to/dir"));
// Add other configurations if it necessary
});