Interface IDataExportService
Interface for data export service.
Namespace: Kephas.Data.IO.Export
Assembly: Kephas.Data.IO.dll
Syntax
[SingletonAppServiceContract]
public interface IDataExportService
Methods
| Improve this Doc View SourceExportDataAsync(IDataExportContext, CancellationToken)
Exports data asynchronously.
Declaration
Task<IOperationResult> ExportDataAsync(IDataExportContext context, CancellationToken cancellationToken = default(CancellationToken))
Parameters
| Type | Name | Description |
|---|---|---|
| IDataExportContext | context | The export context. |
| System.Threading.CancellationToken | cancellationToken | The cancellation token (optional). |
Returns
| Type | Description |
|---|---|
| System.Threading.Tasks.Task<IOperationResult> | A data export result. |