Remarks
Occurs when the connection to an Internet URL, started through a call to the RecorderStartFromURL method, is completed.
Syntax
[Visual Basic]
Public Event ConnectionToUrlDone As ConnectionToUrlDoneEventHandler
|
|
[C#]
public event ConnectionToUrlDoneEventHandler ConnectionToUrlDone;
|
|
[C++]
public: __event ConnectionToUrlDoneEventHandler ConnectionToUrlDone;
|
|
Event Data
The event handler receives an argument of type ConnectionToUrlDoneEventArgs having the following parameters:
Parameters
|
Description
|
|
|
nResult
|
The result of the exporting session.
Value
|
Meaning
|
|
|
Negative value
|
An error occurred, check the LastError property value in order to see the error code meaning
|
enumErrorCodes.ERR_NOERROR (0)
|
The connection was successful.
|
|
|