DataExportHelper.LogExportMetric Method (IMapper, Nullable<ExcelExportStatus>, Nullable<Int32>, Nullable<Int32>, Nullable<Int64>, String, String, Nullable<ExcelExportAttrs>, Nullable<ExcelExportOfflineReasons>) |
Logs metrics for data exporting.
Namespace:
NetQuarry.Data
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntaxpublic static void LogExportMetric(
IMapper oe,
Nullable<ExcelExportStatus> ees = null,
Nullable<int> numRecords = null,
Nullable<int> numCols = null,
Nullable<long> docSize = null,
string docID = null,
string exportError = null,
Nullable<ExcelExportAttrs> eea = null,
Nullable<ExcelExportOfflineReasons> eeor = null
)
Public Shared Sub LogExportMetric (
oe As IMapper,
Optional ees As Nullable(Of ExcelExportStatus) = Nothing,
Optional numRecords As Nullable(Of Integer) = Nothing,
Optional numCols As Nullable(Of Integer) = Nothing,
Optional docSize As Nullable(Of Long) = Nothing,
Optional docID As String = Nothing,
Optional exportError As String = Nothing,
Optional eea As Nullable(Of ExcelExportAttrs) = Nothing,
Optional eeor As Nullable(Of ExcelExportOfflineReasons) = Nothing
)
Parameters
- oe
- Type: NetQuarry.Data.IMapper
The Offline Export mapper. - ees (Optional)
- Type: System.Nullable<ExcelExportStatus>
The Status of the offline export. - numRecords (Optional)
- Type: System.Nullable<Int32>
The number of records involved. - numCols (Optional)
- Type: System.Nullable<Int32>
The number of columns involved. - docSize (Optional)
- Type: System.Nullable<Int64>
The size of the resulting document. - docID (Optional)
- Type: System.String
The ID of the document stored in the DocStorageService. - exportError (Optional)
- Type: System.String
The error raised by the export service. - eea (Optional)
- Type: System.Nullable<ExcelExportAttrs>
The ExcelExportAttrs for the export. - eeor (Optional)
- Type: System.Nullable<ExcelExportOfflineReasons>
The Offline Reasons for the export.
See Also