Copyright © 2006-2019 MultiMedia Soft

ConnectionToUrlDone event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs when the connection to an Internet URL, started through a call to the  RecorderStartFromURL method, is completed.

 

For further details about synchronization through Events see the How to synchronize the container application through events tutorial.

 

 

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.