| DiaGlobWrapperSetCallerID Method |
diaGlobWrapper Help
Sets the default calling party number or Caller ID for outbound calls.
Namespace: InkostarAssembly: DiaGlobWrapper (in DiaGlobWrapper.dll) Version: 0.0.0.0
Syntaxpublic void SetCallerID(
Channel CurrentChannel,
string CallerID
)
Public Sub SetCallerID (
CurrentChannel As Channel,
CallerID As String
)
public:
void SetCallerID(
Channel^ CurrentChannel,
String^ CallerID
)
member SetCallerID :
CurrentChannel : Channel *
CallerID : string -> unit
Parameters
- CurrentChannel
- Type: InkostarChannel
The Channel on the Dialogic board on which the function is to be executed. - CallerID
- Type: SystemString
The caller ID to be set.
Remarks
Compatibility: E1 CAS, T1 Robbed Bit, ISDN (BRI and PRI), R4 on DM3 (Analog, ISDN, and T1), SS7, IP
On failure this function will generate an exception of type DiaGlobWrapperLibException
Examples
To set a default caller ID of 45879 on the outbound channel.
C#: objDevice.SetCallerID(ChannelOutbound, "45879");
VB.NET: objDevice.SetCallerID(ChannelOutbound, "45879")
See Also