Properties
| Name | Access | Type | Description |
|---|---|---|---|
| ArticleCollection | Read, Write | ArticleCollection | Article Collection |
| DefaultArticle | Read, Write | Article | Default Article |
| DeleteDate | Read, Write | Nullable of DateTime | Delete Date |
| Description | Read | String | Description |
| Errors | Read | IList of Error | Errors |
| HasChildren | Read | Nullable of Boolean | Has Children |
| Id | Read, Write | Nullable of Int32 | Id |
| ImageUrl | Read, Write | String | Image Url |
| IsDeleted | Read, Write | Nullable of Boolean | Is Deleted |
| Name | Read, Write | String | Name |
| Parent | Read, Write | Category | Parent |
| SortOrder | Read, Write | Nullable of Int32 | Sort Order |
| Url | Read, Write | String | Url |
| UrlKey | Read, Write | String | Url Key |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $category.HasErrors())
JavaScript
var booleanResponse = category.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $category.HasWarnings())
JavaScript
var booleanResponse = category.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $category.HasWarningsOrErrors())
JavaScript
var booleanResponse = category.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$category.ThrowErrors()
JavaScript
category.ThrowErrors();