Specifies constants indicating what media types a station supports.

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

Syntax

C#
[FlagsAttribute]
public enum SupportedMedia
Visual Basic
<FlagsAttribute> _
Public Enumeration SupportedMedia

Members

Member nameValueDescription
None0The station supports no media types. Cannot be used with other flags.
Call1The station supports calls.
Chat2The station supports chats.
Email4The station supports emails.
Generic8The station supports generic objects.
BrowserSync16The station supports browser sync objects.
Callback32The station supports callbacks.
DualForm64The station supports dual form objects.
SmsMessage256The station supports SMS messages.
WorkItem1024The station supports work item interactions.

Remarks

This enumeration is used by StationSettings to specify what media a station supports.

Examples

The following example demonstrates creation of a StationSettings object.
CopyC#
using ININ.IceLib.Connection;

SupportedMedia supportedMedia = SupportedMedia.Call | SupportedMedia.Chat | SupportedMedia.Email;
WorkstationSettings stationSettings = new WorkstationSettings("station1", supportedMedia);

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