Click or drag to resize

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)
Syntax
public 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
)

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