ExecutingSqlStatementSqliteFeatureSourceEventArgs¶
Namespace: ThinkGeo.Core
Event arguments that describe a SQL statement about to be executed by SqliteFeatureSource.
public class ExecutingSqlStatementSqliteFeatureSourceEventArgs : System.EventArgs
Inheritance object → EventArgs → ExecutingSqlStatementSqliteFeatureSourceEventArgs
Properties¶
SqlStatement¶
Gets or sets the SQL statement that will be executed.
public string SqlStatement { get; set; }
Property Value¶
ExcutingSqlStatementType¶
Gets or sets the type of SQL statement being executed.
public ExecutingSqlStatementType ExcutingSqlStatementType { get; set; }
Property Value¶
FeatureQueryingExtent¶
Gets the extent associated with the request when applicable.
public RectangleShape FeatureQueryingExtent { get; }
Property Value¶
Constructors¶
ExecutingSqlStatementSqliteFeatureSourceEventArgs(string)¶
Initializes a new instance of the ExecutingSqlStatementSqliteFeatureSourceEventArgs class.
public ExecutingSqlStatementSqliteFeatureSourceEventArgs(string sqlStatement)
Parameters¶
sqlStatement string
ExecutingSqlStatementSqliteFeatureSourceEventArgs(string, ExecutingSqlStatementType, RectangleShape)¶
Initializes a new instance of the ExecutingSqlStatementSqliteFeatureSourceEventArgs class.
public ExecutingSqlStatementSqliteFeatureSourceEventArgs(string sqlStatement, ExecutingSqlStatementType sqlStatementType, RectangleShape featureQueryingExtent)
Parameters¶
sqlStatement string
sqlStatementType ExecutingSqlStatementType
featureQueryingExtent RectangleShape