Properties
Name | Access | Type | Description |
---|---|---|---|
Content | Read | Content | Content |
Errors | Read | IList of Error | Errors |
TaggedByUser | Read | User | Tagged By User |
TaggedByUserId | Read | Int32 | Tagged By User Id |
TaggedDate | Read | DateTime | Tagged Date |
TagName | Read | String | Tag Name |
TypeId | Read | Nullable of Guid | Type Id |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $contentTag.HasErrors())
JavaScript
var booleanResponse = contentTag.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $contentTag.HasWarnings())
JavaScript
var booleanResponse = contentTag.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $contentTag.HasWarningsOrErrors())
JavaScript
var booleanResponse = contentTag.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$contentTag.ThrowErrors()
JavaScript
contentTag.ThrowErrors();