IImageSourceErrorListener
The IImageSourceErrorListener
interface defines a listener for receiving error notifications from an image source.
Definition
Namespace: Dynamsoft.Core
Assembly: Dynamsoft.Core.dll
public interface IImageSourceErrorListener
Methods
Method | Description |
---|---|
OnErrorReceived |
Called when an error is received from the image source. |
OnErrorReceived
Called when an error is received from the image source.
void OnErrorReceived(int errorCode, string errorMessage)
Parameters
[in] errorCode
The integer error code indicating the type of error.
[in] errorMessage
A C-style string containing the error message providing additional information about the error.
See Also