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, Write | Boolean | Value |
VoteType | Read, Write | String | Vote Type |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $forumThreadVote.HasErrors())
JavaScript
var booleanResponse = forumThreadVote.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $forumThreadVote.HasWarnings())
JavaScript
var booleanResponse = forumThreadVote.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $forumThreadVote.HasWarningsOrErrors())
JavaScript
var booleanResponse = forumThreadVote.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$forumThreadVote.ThrowErrors()
JavaScript
forumThreadVote.ThrowErrors();