Gets the contact data for this Dialer call.

Namespace: ININ.IceLib.Dialer
Assembly: ININ.IceLib.Dialer (in ININ.IceLib.Dialer.dll) Version: 0.0.0.0 (22.3.0.208)

Syntax

C#
public Dictionary<string, string> ContactData { get; }
Visual Basic
Public ReadOnly Property ContactData As Dictionary(Of String, String)
	Get

Field Value

The contact data.

Remarks

To update the contact data, assign new values to the existing Dictionary entries:
CopyC#
// This assumes there is an existing DialerCallInteraction instance named
//  DialerCall and that its contact data contains an Address value that
//  is to be updated
DialerCall.ContactData["Address"] = "(new address)";

See Also