Copyright © 2006-2019 MultiMedia Soft

SoundUploadDone event

Previous pageReturn to chapter overviewNext page

Remarks

 

Occurs whenever an uploading session, started through a call to the RecordedSound.RequestUploadToFTP method, is completed or terminated through a call to the RecordedSound.CancelUploadToFTP method.

 

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

 

 

Syntax

 

[Visual Basic]

Public Event SoundExportDone As SoundExportDoneEventHandler


 

[C#]

public event SoundExportDoneEventHandler SoundExportDone;


 

[C++]

public: __event SoundExportDoneEventHandler SoundExportDone;


 

 

Event Data

 

The event handler receives an argument of type SoundExportDoneEventArgs 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 sound was exported successfully.