SiteDefinitionsLocalizationServicesGetPCRs Method
|
Retrieves localization on all Page Creation Rules on the site. The name of each entry is localized name if localization exists
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.308
Syntax public XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]> GetPCRs(
int page,
int pageSize
)
Public Function GetPCRs (
page As Integer,
pageSize As Integer
) As XHRServiceResponseGeneric(Of SiteDefinitionsLocalizationListItem())
public:
virtual XHRServiceResponseGeneric<array<SiteDefinitionsLocalizationListItem^>^>^ GetPCRs(
int page,
int pageSize
) sealed
abstract GetPCRs :
page : int *
pageSize : int -> XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]>
override GetPCRs :
page : int *
pageSize : int -> XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]>
Parameters
- page
- Type: SystemInt32
Page number in the paginated collection - pageSize
- Type: SystemInt32
Number of items per page in pagination
Return Value
Type:
XHRServiceResponseGenericSiteDefinitionsLocalizationListItemCollection of localized or original basic information of Page Creation Rules
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": [{
"ID": "PageCreationRules\/65",
"Name": "Document",
"isInComplete": true,
"isOutDated": true,
"isTranslated": false
}, {
"ID": "PageCreationRules\/1",
"Name": "Créer un composant de l'image",
"isInComplete": false,
"isOutDated": false,
"isTranslated": true
}]
}
See Also