ICallAttachCallerData(DictionaryString, String, ActionBoolean) Method

Attaches specified data to the "Caller" connection. This data is preserved and can be accessed by other call flow and server. this method works "asynchronously" and return control to the calling code instantly. Use completed to assure that data is available in tha MyCall.Caller connection Script should use this method only when executed in Active mode.

Definition

Namespace: CallFlow
Assembly: 3CX.CallFlow (in 3CX.CallFlow.dll) Version: 20.0.1
C#
void AttachCallerData(
	Dictionary<string, string> data,
	Action<bool> completed
)

Parameters

data  DictionaryString, String
the dictionary of the "public_*" keys which should be attached to the caller connection. See AttachConnectionData(DictionaryString, String)
completed  ActionBoolean
Method does not wait until data will be attached. So caller can use this callback to assure that data is ready

See Also