Properties
| Name | Access | Type | Description | 
|---|---|---|---|
| CreatedDate | Read, Write | DateTime | Created Date | 
| Errors | Read | IList of Error | Errors | 
| Thread | Read, Write | ForumThread | Thread | 
| ThreadId | Read, Write | Int32 | Thread Id | 
| User | Read, Write | User | User | 
| UserId | Read, Write | Int32 | User Id | 
| Value | Read | Boolean | Value | 
| VoteType | Read | String | Vote Type | 
| Warnings | Read | IList of Warning | Warnings | 
Methods
HasErrors
Velocity
#set($booleanResponse = $forumThreadVote.HasErrors())
JavaScript
var booleanResponse = forumThreadVote.HasErrors();
Returns
BooleanHasWarnings
Velocity
#set($booleanResponse = $forumThreadVote.HasWarnings())
JavaScript
var booleanResponse = forumThreadVote.HasWarnings();
Returns
BooleanHasWarningsOrErrors
Velocity
#set($booleanResponse = $forumThreadVote.HasWarningsOrErrors())
JavaScript
var booleanResponse = forumThreadVote.HasWarningsOrErrors();
Returns
BooleanThrowErrors
Velocity
$forumThreadVote.ThrowErrors()
JavaScript
forumThreadVote.ThrowErrors();