'Declaration Public Event Error As PgSqlLoaderErrorEventHandler
public event PgSqlLoaderErrorEventHandler Error
Event Data
The event handler receives an argument of type PgSqlLoaderErrorEventArgs containing data related to this event. The following PgSqlLoaderErrorEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Exception | Gets the PgSqlException instance that a PgSqlLoader throws. |
Ignore | Gets or sets whether the current error will be ignored or not. |
Remarks
The event handler receives an argument of PgSqlLoaderErrorEventArgs type containing data related to this event. The following PgSqlLoaderErrorEventArgs properties provide information specific to this event:
Property | Description |
---|---|
PgSqlLoaderErrorEventArgs.Exception | Gets PgSqlException object with error specific information. |
PgSqlLoaderErrorEventArgs.Ignore | Specifies whether current error will be ignored. |
Clients that want to process errors raised by the server should create a PgSqlLoaderErrorEventHandler delegate to listen to this event.
See Also