IndexProgressArgs Constructor

Initializes a new instance of the IndexProgressArgs class.

Definition

Namespace: Mythicsoft.Search.Core
Assembly: Mythicsoft.Search.Core (in Mythicsoft.Search.Core.dll) Version: 9.3.830.1
C#
public IndexProgressArgs(
	IndexProgressState stateProgress,
	long nIndexedCount,
	long nIndexedSize,
	long nTotalCount,
	long nTotalSize,
	string strProgress
)

Parameters

stateProgress  IndexProgressState
The state of the indexing process.
nIndexedCount  Int64
The number of files that have been indexed so far.
nIndexedSize  Int64
The size, in bytes, of the amount of data indexed (based on file size).
nTotalCount  Int64
The total count of the files checked for indexing.
nTotalSize  Int64
The size, in bytes, of the files checked for indexing (based on file size).
strProgress  String
The current progress message from the indexer.

See Also