Represents the highest-level object in the Content Engine API object model. Creating an instance of this object exposes all other public members of the object hierarchy. For example, from EntireNetwork, you can instantiate a Domain object. From a domain, you can navigate to an object store, then begin accessing documents, folders, etc. You can also use the EntireNetwork to retrieve all of the Realm objects for the FileNet P8 domain, then retrieve the users and groups associated with a realm.

You can create a new EntireNetwork object by calling the GetInstance or FetchInstance method on the Factory.EntireNetwork class.


Namespace: FileNet.Api.Core
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Interface IEntireNetwork
    Implements IIndependentObject, IEngineObject, ICloneable
C#
public interface IEntireNetwork : IIndependentObject, IEngineObject, ICloneable
C++
interface class IEntireNetwork : IIndependentObject, IEngineObject, ICloneable
J#
public interface IEntireNetwork implements IIndependentObject, IEngineObject, ICloneable
JScript
public interface IEntireNetwork extends IIndependentObject, IEngineObject, ICloneable

Remarks

See Also