| DiaSpringWrapperStopDeviceIO Method |
Stops all IO activities such as playback and recording.
Namespace: InkostarAssembly: DiaSpringWrapper (in DiaSpringWrapper.dll) Version: 0.0.0.0
Syntaxpublic void StopDeviceIO(
string ChannelName
)
Public Sub StopDeviceIO (
ChannelName As String
)
public:
void StopDeviceIO(
String^ ChannelName
)
member StopDeviceIO :
ChannelName : string -> unit
Parameters
- ChannelName
- Type: SystemString
The Channel name on the Dialogic board on which to stop playback and recording.
Remarks
This function will fail if invoked before the [device].Open() function.
Examples
Stops playback or recording on the first channel.
C#: objDevice.StopDeviceIO("dxxxB1C1");
VB.NET: objDevice.StopDeviceIO("dxxxB1C1")
See Also