Properties
Name | Access | Type | Description |
---|---|---|---|
CreatedDate | Read, Write | DateTime | Created Date |
Errors | Read | IList of Error | Errors |
Reply | Read, Write | ForumReply | Reply |
ReplyId | Read, Write | Int32 | Reply 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 = $forumReplyVote.HasErrors())
JavaScript
var booleanResponse = forumReplyVote.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $forumReplyVote.HasWarnings())
JavaScript
var booleanResponse = forumReplyVote.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $forumReplyVote.HasWarningsOrErrors())
JavaScript
var booleanResponse = forumReplyVote.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$forumReplyVote.ThrowErrors()
JavaScript
forumReplyVote.ThrowErrors();