Registers user data sources to be included in the user data export.
IExportableUserDataSource
is defined in the Telligent.Evolution.Extensibility.Export.Version1
namespace of Telligent.Evolution.Platform.dll
Definition
interface IExportableUserDataSource : IPlugin { string DataSourceName { get; } void Export(int userId, IExportUserDataSourceController controller); }
Properties
Name | Type | Description | Default | Options |
---|---|---|---|---|
DataSourceName | string | The name of this source. |
Methods
void Export(int userId, IExportUserDataSourceController controller);
Called when an export is processing. Data associated to the requested user should be exported using the controller.
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
userId | int | User Id | Required | ||
controller | IExportUserDataSourceController | Controller | Required |