Properties
Name | Access | Type | Description |
---|---|---|---|
Errors | Read | IList of Error | Errors |
MentionedContent | Read | Content | Mentioned Content |
MentionedDate | Read, Write | DateTime | Mentioned Date |
MentioningContent | Read | Content | Mentioning Content |
MentioningUserId | Read, Write | Int32 | Mentioning User Id |
User | Read, Write | User | User |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $mention.HasErrors())
JavaScript
var booleanResponse = mention.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $mention.HasWarnings())
JavaScript
var booleanResponse = mention.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $mention.HasWarningsOrErrors())
JavaScript
var booleanResponse = mention.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$mention.ThrowErrors()
JavaScript
mention.ThrowErrors();