Properties
| Name | Access | Type | Description |
|---|---|---|---|
| CommentCount | Read, Write | Int32 | Comment Count |
| Content | Read | Content | Content |
| Errors | Read | IList of Error | Errors |
| Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $commentSummary.HasErrors())
JavaScript
var booleanResponse = commentSummary.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $commentSummary.HasWarnings())
JavaScript
var booleanResponse = commentSummary.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $commentSummary.HasWarningsOrErrors())
JavaScript
var booleanResponse = commentSummary.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$commentSummary.ThrowErrors()
JavaScript
commentSummary.ThrowErrors();