Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents  
 
 
RecordingStopped event 
 
Remarks 
 
Occurs whenever a recording session is stopped through a call to the RecorderStop method or when an error occurs. 
 
 
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
 
RecordingStoppedEventArgs members
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.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Copyright © 2006 - 2008 MultiMedia Soft 
Return to Table of contents