GlobalConfigurationsServicesGetGlobalExportNames Method
|
Retrieves the names of global exports.
This call should be used to prevent local exports name conflicting with global exports.
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax public XHRServiceResponseGeneric<string[]> GetGlobalExportNames()
Public Function GetGlobalExportNames As XHRServiceResponseGeneric(Of String())
public:
virtual XHRServiceResponseGeneric<array<String^>^>^ GetGlobalExportNames() sealed
abstract GetGlobalExportNames : unit -> XHRServiceResponseGeneric<string[]>
override GetGlobalExportNames : unit -> XHRServiceResponseGeneric<string[]>
Return Value
Type:
XHRServiceResponseGenericString
Array of global export names. These names will show up as attribute names on all navigation/link entries for page expanded xml. Therefore, it is import that are not no duplicate export name, which will cause invalid expanded xml.
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": ["Title", "Abstract"]
}
See Also