DataExportHelperLogExportMetric Method (IAppContext, Int32, ExcelExportStatus, NullableInt32, NullableInt32, NullableInt64, String, String, NullableExcelExportAttrs, NullableExcelExportOfflineReasons) |
Logs metrics for data exporting.
Namespace:
NetQuarry.Data
Assembly:
EAP.Mapper (in EAP.Mapper.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static void LogExportMetric(
IAppContext cxt,
int exportJobID,
ExcelExportStatus ees,
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 (
cxt As IAppContext,
exportJobID As Integer,
ees As ExcelExportStatus,
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
- cxt
- Type: NetQuarryIAppContext
The current AppContext. - exportJobID
- Type: SystemInt32
The Export's Job ID. - ees
- Type: NetQuarryExcelExportStatus
The Status of the offline export. - numRecords (Optional)
- Type: SystemNullableInt32
The number of records involved. - numCols (Optional)
- Type: SystemNullableInt32
The number of columns involved. - docSize (Optional)
- Type: SystemNullableInt64
The size of the resulting document. - docID (Optional)
- Type: SystemString
The ID of the document stored in the DocStorageService. - exportError (Optional)
- Type: SystemString
The error raised by the export service. - eea (Optional)
- Type: SystemNullableExcelExportAttrs
The ExcelExportAttrs for the export. - eeor (Optional)
- Type: SystemNullableExcelExportOfflineReasons
The Offline Reasons for the export.
See Also