'Declaration Public Sub UseCustomStore( _ ByVal resourcesService As IResourcesService _ )
public void UseCustomStore( IResourcesService resourcesService )
Parameters
- resourcesService
'Declaration Public Sub UseCustomStore( _ ByVal resourcesService As IResourcesService _ )
public void UseCustomStore( IResourcesService resourcesService )
// Implement the IResourcesService (and ISectionResourcesService if needed). // Please refer to our web samples for more details. public class ResourceService: IResourcesService, ISectionResourcesService { //implementation } var resourcesService = new ResourceService(); app.UseDesigner(config => { config.UseCustomStore(resourcesService); });