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