Provides access to all the various IC directories.

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

Syntax

C#
public class DirectoriesManager
Visual Basic
Public Class DirectoriesManager

Remarks

This class serves as the initial entry point into the Directories namespace. There is only one instance of this object per session. This object is required to manage the resources of other objects within this namespace. All classes in the Directories namespace send and receive messages to and from the IC system via the Session object of the DirectoriesManager.

Note that the DirectoriesManager class is a singleton object and is accessed using the GetInstance(Session) method.

Examples

CopyC#
Session session = new Session();
session.Connect(...);
DirectoriesManager directoryManager = DirectoriesManager.GetInstance(session);

Inheritance Hierarchy

System..::..Object
  ININ.IceLib.Directories..::..DirectoriesManager

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