Properties
| Name | Access | Type | Description |
|---|---|---|---|
| Content | Read | Content | Content |
| Errors | Read | IList of Error | Errors |
| TaggedDate | Read | DateTime | Tagged Date |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $aggregateTaggedContent.HasErrors())
JavaScript
var booleanResponse = aggregateTaggedContent.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $aggregateTaggedContent.HasWarnings())
JavaScript
var booleanResponse = aggregateTaggedContent.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $aggregateTaggedContent.HasWarningsOrErrors())
JavaScript
var booleanResponse = aggregateTaggedContent.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$aggregateTaggedContent.ThrowErrors()
JavaScript
aggregateTaggedContent.ThrowErrors();