Click or drag to resize

SiteDefinitionsLocalizationServicesGetAssetSchemas Method


Retrieves localization on all Asset Schemas of the site. The name on each entry is localized name if localization exists

Namespace:  IngeniuxCMService
Assembly:  IngeniuxCMService (in IngeniuxCMService.dll) Version: 10.5.94
Syntax
public XHRServiceResponseGeneric<SiteDefinitionsLocalizationListItem[]> GetAssetSchemas()

Return Value

Type: XHRServiceResponseGenericSiteDefinitionsLocalizationListItem

Collection of localized or original basic information on Schemas for creating Components

Examples
Sample JSON return
JavaScript
{
    "code": 0,
    "error": null,
    "message": [{
        "ID": "AssetSchemas\/Image",
        "Name": "Image",
        "isInComplete": false,
        "isOutDated": true,
        "isTranslated": true
    }, {
        "ID": "AssetSchemas\/Document",
        "Name": "文档",
        "isInComplete": false,
        "isOutDated": false,
        "isTranslated": true
    }]
}
See Also