| DiaSpringWrapperRouteCalls Method |
Establishes a full duplex connection between two channels on the same ScBus enabled device thus allowing the two voice channels on separate timeslots to be bridged together.
This function can be used when a conference call or a supervised transfer is not possible betwen the two parties.
Namespace: InkostarAssembly: DiaSpringWrapper (in DiaSpringWrapper.dll) Version: 0.0.0.0
Syntaxpublic void RouteCalls(
string FirstChannelName,
string SecondChannelName
)
Public Sub RouteCalls (
FirstChannelName As String,
SecondChannelName As String
)
public:
void RouteCalls(
String^ FirstChannelName,
String^ SecondChannelName
)
member RouteCalls :
FirstChannelName : string *
SecondChannelName : string -> unit
Parameters
- FirstChannelName
- Type: SystemString
The first Channel name to be bridged. - SecondChannelName
- Type: SystemString
The second Channel name to be bridged.
Remarks
This function will fail if invoked before the [device].Open() function.
Examples
Bridge the first two channels together.
C#: objDevice.RouteCalls("dxxxB1C1","dxxxB1C2");
VB.NET: objDevice.RouteCalls("dxxxB1C1","dxxxB1C2")
See Also