| DiaSpringWrapperUnRouteCalls Method |
Breaks the full duplex connection between the two bridged channels and restores the connections between the SCBus timelots to their initial state.
Namespace: InkostarAssembly: DiaSpringWrapper (in DiaSpringWrapper.dll) Version: 0.0.0.0
Syntaxpublic void UnRouteCalls(
string FirstChannelName,
string SecondChannelName
)
Public Sub UnRouteCalls (
FirstChannelName As String,
SecondChannelName As String
)
public:
void UnRouteCalls(
String^ FirstChannelName,
String^ SecondChannelName
)
member UnRouteCalls :
FirstChannelName : string *
SecondChannelName : string -> unit
Parameters
- FirstChannelName
- Type: SystemString
The first Channel name to be unbridged. - SecondChannelName
- Type: SystemString
The second Channel name to be unbridged.
Remarks
This function will fail if invoked before the [device].Open() function.
Executing this function on two channel not previously bridged together will have no effect.
Examples
Unbridge the first two channels previously bridged together.
C#: objDevice.UnRouteCalls("dxxxB1C1","dxxxB1C2");
VB.NET: objDevice.UnRouteCalls("dxxxB1C1","dxxxB1C2")
See Also