PageCommandsServicesGetFullLingualMaps Method
|
Retrieves the complete lingual map information for the specified page
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<ContentItemLingualMaps> GetFullLingualMaps(
string pageId
)
Public Function GetFullLingualMaps (
pageId As String
) As XHRServiceResponseGeneric(Of ContentItemLingualMaps)
public:
virtual XHRServiceResponseGeneric<ContentItemLingualMaps^>^ GetFullLingualMaps(
String^ pageId
) sealed
abstract GetFullLingualMaps :
pageId : string -> XHRServiceResponseGeneric<ContentItemLingualMaps>
override GetFullLingualMaps :
pageId : string -> XHRServiceResponseGeneric<ContentItemLingualMaps>
Parameters
- pageId
- Type: SystemString
Id of the Page to retrieve lingual map information for
Return Value
Type:
XHRServiceResponseGenericContentItemLingualMapsPage lingual map information
Examples
Output example
{
"clones": [{
id: x123,
locale: "zh-cn",
name: "中文网页"
}, {
id: x234,
locale: "ja-jp",
name: "日本のページ"
}],
"master": {
id: x12,
locale: "en-us",
name: "English Page"
}
}
See Also