diaGlobWrapper Help
Sets the default calling party number or Caller ID for outbound calls.

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

Syntax

C#
public void SetCallerID(
	Channel CurrentChannel,
	string CallerID
)
Visual Basic (Declaration)
Public Sub SetCallerID ( _
	CurrentChannel As Channel, _
	CallerID As String _
)
Visual C++
public:
void SetCallerID(
	Channel^ CurrentChannel, 
	String^ CallerID
)

Parameters

CurrentChannel
Type: Inkostar..::.Channel
The Channel on the Dialogic board on which the function is to be executed.
CallerID
Type: System..::.String
The caller ID to be set.

Remarks

Compatibility: Springware-E1/T1, Springware-ISDN, DM3-E1/T1, DM3-ISDN, DM3-Analog
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