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