'Declaration Public Event EncodingError As System.EventHandler(Of EncodingErrorEventArgs)
public event System.EventHandler<EncodingErrorEventArgs> EncodingError
Event Data
The event handler receives an argument of type EncodingErrorEventArgs containing data related to this event. The following EncodingErrorEventArgs properties provide information specific to this event.
Property | Description |
---|---|
ErrorCode | Gets internal code of the error. |
Exception | Gets the exception that initially triggered the EncodingError event. |
Text | Gets the text of exception. It can be changed by user. |
ThrowException | Gets or sets a value that indicates whether Exception should be thrown. |
See Also