MESCIUS.ActiveReports.Aspnetcore.Designer Assembly / GrapeCity.ActiveReports.Web.Designer Namespace / ReportDesignerConfiguration Class / UseReportsProvider Method
The custom report store provider.
Example

In This Topic
UseReportsProvider Method (ReportDesignerConfiguration)
In This Topic
Uses a custom report store provider.
Syntax
'Declaration
 
Public Function UseReportsProvider( _
   ByVal reportStore As IReportStore _
) As ReportDesignerConfiguration
 

Parameters

reportStore
The custom report store provider.

Return Value

The current ReportDesignerConfiguration instance.
Example
app.UseReportDesigner(config =>
{
	// Your implementation of IReportStore.
	config.UseReportsProvider(reportStore);
});
See Also