Remarks
Occurs whenever a recording session is stopped through a call to the RecorderStop method or when an error occurs.
For further details about synchronization through Events see the How to synchronize the container application through events tutorial.
Syntax
[Visual Basic]
Public Event RecordingStopped As RecordingStopEventHandler
|
|
[C#]
public event RecordingStopEventHandler RecordingStopped;
|
|
[C++]
public: __event RecordingStopEventHandler* RecordingStopped;
|
|
Event Data
The event handler receives an argument of type RecordingStoppedEventArgs having the following parameters:
Parameters
|
Description
|
|
|
bResult
|
Boolean value that indicates the result of the recording session.
Supported values are the following:
Mnemonic Value
|
Numeric value
|
Meaning
|
false
|
0
|
The recording session failed. Check the LastError property value in order to see the last error.
|
true
|
1
|
The recording session succeeded.
|
|
|