Represents a conference within the Interaction Center system.

Namespace: ININ.IceLib.Interactions
Assembly: ININ.IceLib.Interactions (in ININ.IceLib.Interactions.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public class InteractionConference
Visual Basic
Public Class InteractionConference

Remarks

An interaction conference occurs when multiple parties are participating in the same interaction. This class provides support for representing an interaction conference and for adding and listing parties in the interaction.

To add parties to an interaction, call AddParties(array<Interaction>[]()[][]) or AddPartiesAsync(array<Interaction>[]()[][], AsyncCompletedEventHandler, Object) providing an array of Interaction objects. When the asynchronous add parties operation completes, it invokes the completedCallback delegate.

To get the parties of a conference interaction, call GetParties()()()() or GetPartiesAsync(EventHandler<(Of <<'(GetContentsCompletedEventArgs>)>>), Object). When the asynchronous get parties operation completes, it invokes the completedCallback delegate returning the list of interactions in the GetContentsCompletedEventArgs object.

Note
The asynchronous version of the above methods is preferred since these operations can be lengthy.

Inheritance Hierarchy

System..::..Object
  ININ.IceLib.Interactions..::..InteractionConference

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 GA and beyond.
For 3.0, supported for IC Server version 3.0 GA and beyond.

See Also