Specifies constants indicating what media types a station supports.
Namespace: ININ.IceLib.ConnectionAssembly: 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 name | Value | Description | |
---|---|---|---|
None | 0 | The station supports no media types. Cannot be used with other flags. | |
Call | 1 | The station supports calls. | |
Chat | 2 | The station supports chats. | |
4 | The station supports emails. | ||
Generic | 8 | The station supports generic objects. | |
BrowserSync | 16 | The station supports browser sync objects. | |
Callback | 32 | The station supports callbacks. | |
DualForm | 64 | The station supports dual form objects. | |
SmsMessage | 256 | The station supports SMS messages. | |
WorkItem | 1024 | The 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.
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.