Skip to content

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 objectEventArgsBuildingIndexDelimitedFeatureSourceEventArgs

Properties

RecordCount

Gets the total number of records being indexed.

public int RecordCount { get; }

Property Value

int

CurrentRecordIndex

Gets the zero-based index of the feature currently being indexed.

public int CurrentRecordIndex { get; }

Property Value

int

CurrentFeature

Gets the feature currently being processed.

public Feature CurrentFeature { get; }

Property Value

Feature

StartProcessTime

Gets the starting process time for building the index.

public DateTime StartProcessTime { get; }

Property Value

DateTime

DelimitedPathFilename

Gets the path to the delimited source file.

public string DelimitedPathFilename { get; }

Property Value

string

Cancel

Gets or sets a value indicating whether the index build should be cancelled.

public bool Cancel { get; set; }

Property Value

bool

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