Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
ConnectionToUrlDone event 
 
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. 
 
ConnectionToUrlDoneEventArgs members
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.
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents