Click or drag to resize

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
)

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