MESCIUS.ActiveReports.Aspnet.Designer Assembly / GrapeCity.ActiveReports.Web.Designer Namespace / ReportDesignerConfiguration Class / UseResourcesProvider Method
The custom resource store provider.
Example

In This Topic
UseResourcesProvider Method (ReportDesignerConfiguration)
In This Topic
Uses a custom resource store provider.
Syntax
'Declaration
 
Public Function UseResourcesProvider( _
   ByVal resourcesProvider As IResourceRepositoryProvider _
) As ReportDesignerConfiguration
 

Parameters

resourcesProvider
The custom resource store provider.

Return Value

The current ReportDesignerConfiguration instance.
Example
app.UseReportDesigner(config =>
{
	// Your implementation of IResourceRepositoryProvider.
	config.UseResourcesProvider(resourceProvider);
});
See Also