Represents the manager object that is in charge of lingual mapping between pages. Lingual maps are an essential part
of the Ingeniux WorldView system
Namespace: Ingeniux.CMS
Assembly: Ingeniux.CMS.CSAPI (in Ingeniux.CMS.CSAPI.dll) Version: 9.0.565.0 (9.0.565)
Syntax
The ILingualMappingManager type exposes the following members.
Properties
Name | Description | |
---|---|---|
![]() | ContentStore |
Gets the Content Store.
(Inherited from ITransactionalEntity.) |
![]() | CurrentUser |
Gets the Operating User for the Session .
(Inherited from ITransactionalEntity.) |
![]() | Session |
Gets the User Session that this manager instance was initiated from.
(Inherited from ITransactionalEntity.) |
Methods
Name | Description | |
---|---|---|
![]() | AddMap |
Adds a new lingual map between pages.
|
![]() | CloneMaps(Int32, String, Int32, Int32) |
Retrieves all clone maps, or clone maps of the specified clone page locale.
|
![]() | CloneMaps(Int32, String, Int32, Int32) |
Retrieves all clone maps, or clone maps of specified clone page locales.
|
![]() | DeepCloneT, TManager |
Duplicates an object instance, not including its unique ID.
(Inherited from ITransactionalEntity.) |
![]() | LingualMapsByPageUniversal(String, Int32, Int32, Int32) |
Retrieves the collection of all lingual mapped pages associated with a given page. In these maps, the provided page serves the role of either master page or clone page.
|
![]() | LingualMapsByPageUniversal(IPage, Int32, Int32, Int32) |
Retrieves the collection of all lingual mapped pages associated with a given page. In these maps, the provided page serves the role of either master page or clone page.
|
![]() | Map(String) |
Retrieves a lingual map by its unique ID.
|
![]() | Map(IPage, String) |
Retrieves a lingual map by its master page and target locale.
|
![]() | MapByClone(String) |
Retrieves a lingual map by a given page, which serves the role of clone in the map.
|
![]() | MapByClone(IPage) |
Retrieves a lingual map by a given page, which serves the role of clone in the map.
|
![]() | MapsByClones |
Retrieves collection of lingual maps for given page. In these maps, the provided page serves the role of clone page.
|
![]() | MapsByMaster(String, Int32, Int32, Int32) |
Retrieves collection of lingual maps for given page. In these maps, the provided page serves the role of master page.
|
![]() | MapsByMaster(IPage, Int32, Int32, Int32) |
Retrieves collection of lingual maps for given page. In these maps, the provided page serves the role of master page.
|
![]() | MapsByMasters |
Retrieves collection of lingual maps for given page. In these maps, the provided page serves the role of master page.
|
![]() | MasterPageIdsContainExistingMap |
Test a collection of master page ids for existing lingual maps that map to target locale.
|
![]() | QuickWrite |
Creates a temporary Write Session to quickly write something outside the current Session and transaction.
This is a way to bypass the transaction and quickly put something into the content store.
(Inherited from ITransactionalEntity.) |
![]() | RemoveMapsForPage |
Removes all lingual maps for a given page. This method severs all lingual connections to a page.
|
![]() | RemoveMapsForPages |
Removes all ligual maps for a collection of pages specified by page ID.
|
![]() | RemoveMasterMapForPage |
Removes the lingual map for a given clone page.
|
Remarks
Like all manager objects, instances of this manager are retrieved from an IUserSession object. The manager object only works within that session object.
C#
using (IUserSession session = store.OpenReadSession(currentUser))
{
ILingualMappingManager lingualMappingManager = session.LingualMappingManager;
...
}
See Also