diaGlobWrapper Help
Stops immediately the current recording.

Namespace:  Inkostar
Assembly:  DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0

Syntax

C#
public void StopRecording(
	Channel CurrentChannel
)
Visual Basic (Declaration)
Public Sub StopRecording ( _
	CurrentChannel As Channel _
)
Visual C++
public:
void StopRecording(
	Channel^ CurrentChannel
)

Parameters

CurrentChannel
Type: Inkostar..::.Channel
The Channel on the Dialogic board on which the function is to be executed.

Remarks

This function has no effect if no recording is in progress.
Compatibility: All
On failure this function will generate an exception of type DiaGlobWrapperLibException

Examples

To stop the current recording on the inbound channel:
C#: objDevice.StopRecording(ChannelInbound);
VB.NET: objDevice.StopRecording(ChannelInbound)

See Also