BuildingIndexDelimitedFeatureSourceEventArgs¶
Namespace: ThinkGeo.Core
Provides event arguments for the BuildingIndex event raised while a DelimitedFeatureSource builds its spatial index.
public class BuildingIndexDelimitedFeatureSourceEventArgs : System.EventArgs
Inheritance object → EventArgs → BuildingIndexDelimitedFeatureSourceEventArgs
Properties¶
RecordCount¶
Gets the total number of records being indexed.
public int RecordCount { get; }
Property Value¶
CurrentRecordIndex¶
Gets the zero-based index of the feature currently being indexed.
public int CurrentRecordIndex { get; }
Property Value¶
CurrentFeature¶
Gets the feature currently being processed.
public Feature CurrentFeature { get; }
Property Value¶
StartProcessTime¶
Gets the starting process time for building the index.
public DateTime StartProcessTime { get; }
Property Value¶
DelimitedPathFilename¶
Gets the path to the delimited source file.
public string DelimitedPathFilename { get; }
Property Value¶
Cancel¶
Gets or sets a value indicating whether the index build should be cancelled.
public bool Cancel { get; set; }
Property Value¶
Constructors¶
BuildingIndexDelimitedFeatureSourceEventArgs(int, int, Feature, DateTime, string)¶
Initializes a new instance of the BuildingIndexDelimitedFeatureSourceEventArgs class.
public BuildingIndexDelimitedFeatureSourceEventArgs(int recordCount, int currentRecordIndex, Feature currentFeature, DateTime startProcessTime, string delimitedPathFilename)
Parameters¶
recordCount int
currentRecordIndex int
currentFeature Feature
startProcessTime DateTime
delimitedPathFilename string