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
Boolean
HasWarnings
Velocity
#set($booleanResponse = $aggregateTaggedContent.HasWarnings())
JavaScript
var booleanResponse = aggregateTaggedContent.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $aggregateTaggedContent.HasWarningsOrErrors())
JavaScript
var booleanResponse = aggregateTaggedContent.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$aggregateTaggedContent.ThrowErrors()
JavaScript
aggregateTaggedContent.ThrowErrors();