Properties
| Name | Access | Type | Description |
|---|---|---|---|
| ContentCount | Read, Write | Nullable of Int32 | Content Count |
| CssClass | Read, Write | String | Css Class |
| Errors | Read | IList of Error | Errors |
| LatestTaggedDate | Read, Write | DateTime | Latest Tagged Date |
| Name | Read, Write | String | Name |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $tag.HasErrors())
JavaScript
var booleanResponse = tag.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $tag.HasWarnings())
JavaScript
var booleanResponse = tag.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $tag.HasWarningsOrErrors())
JavaScript
var booleanResponse = tag.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$tag.ThrowErrors()
JavaScript
tag.ThrowErrors();