SiteDefinitionsLocalizationServicesGetComponentSchemas Method
|
Retrieves localization on all Component Schemas of the site. The name on each entry is localized name if localization exists
Namespace:
IngeniuxCMService
Assembly:
IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.6.308
Syntax public XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]> GetComponentSchemas(
int page,
int pageSize
)
Public Function GetComponentSchemas (
page As Integer,
pageSize As Integer
) As XHRServiceResponseGeneric(Of SiteDefinitionsLocalizationListItem())
public:
virtual XHRServiceResponseGeneric<array<SiteDefinitionsLocalizationListItem^>^>^ GetComponentSchemas(
int page,
int pageSize
) sealed
abstract GetComponentSchemas :
page : int *
pageSize : int -> XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]>
override GetComponentSchemas :
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 on Schemas for creating Components
Examples
Sample JSON return
{
"code": 0,
"error": null,
"message": [{
"ID": "Schemas\/12",
"Name": "Binary File",
"isInComplete": false,
"isOutDated": true,
"isTranslated": true
}, {
"ID": "Schemas\/568",
"Name": "图像",
"isInComplete": false,
"isOutDated": false,
"isTranslated": true
}]
}
See Also