Click or drag to resize

CallLogItemCallEvents Property

Collection of call events recorded for this call log.

Namespace:  Avaya.ClientServices
Assembly:  AvayaClientServices (in AvayaClientServices.dll) Version: 550.0.60.0
Syntax
C#
public ReadOnlyCollection<CallLogItem> CallEvents { get; }

Property Value

Type: ReadOnlyCollectionCallLogItem
Remarks
A CallLogItem (i.e. instance of this class) provides a wholistic view of individual transactions that took place during the life cycle of a call.

After answering an incoming call or a dial out to a remote user, the call can get transferred (i.e. remote address is changed in the same call dialog) or redirected/forwarded to a different number/user. These transactions will be captured in the CallEvents list. Each event in CallEvents list contains the full detail of a CallLogItem.

Note that the CallLogItem represents the details of the first leg of the call and entries in CallEvents list represent subsequent call transactions. For example, if a call was made from user A to B, and then user B transferred user A to user C, then CallLogItem will represent the initial call leg between A and B, and the 1 CallEvents item will represent the transferred call leg between A and C. These 2 call legs make up the one call experienced by user A.

See Also