Provides access to the UnifiedMessaging namespace.

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

Syntax

C#
public class UnifiedMessagingManager
Visual Basic
Public Class UnifiedMessagingManager

Remarks

Use the UnifiedMessagingManager class to access the functionality found in the ININ.IceLib.UnifiedMessaging namespace.

The ININ.IceLib.UnifiedMessaging namespace includes all functionality for manipulating Fax and voicemail data managed by an IC server. Most features provided in the UnifiedMessagingManager are available in synchronous and asynchronous versions, allowing you to choose the model that best suits your needs.


Examples

All "manager" classes found in the IceLib library are designed as singletons. To begin working with any of the functionality provided in the UnifiedMessagingManager you must obtain the instance through a call to GetInstance(Session).

CopyC#
Session session = new Session();
session.Connect(...);
UnifiedMessagingManager unifiedMessagingManager = UnifiedMessagingManager.GetInstance(session);

Inheritance Hierarchy

System..::..Object
  ININ.IceLib.UnifiedMessaging..::..UnifiedMessagingManager

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