Content created on the site must implement this interface for the social services to support it.
Properties
Name | Access | Type | Description |
---|---|---|---|
Categories | Read, Write | IList of String | Categories |
Description | Read, Write | String | Description |
Errors | Read | IList of Error | Errors |
Group | Read | Group | Group |
Id | Read, Write | Nullable of Guid | Id |
Name | Read, Write | String | Name |
Tags | Read, Write | IList of tag | Tags |
Url | Read | String | A Url to the application on the site. |
UrlKey | Read, Write | String | Url Key |
Warnings | Read | IList of Warning | Warnings |
Methods
HasErrors
Velocity
#set($booleanResponse = $knowledgeCollection.HasErrors())
JavaScript
var booleanResponse = knowledgeCollection.HasErrors();
Returns
Boolean
HasWarnings
Velocity
#set($booleanResponse = $knowledgeCollection.HasWarnings())
JavaScript
var booleanResponse = knowledgeCollection.HasWarnings();
Returns
Boolean
HasWarningsOrErrors
Velocity
#set($booleanResponse = $knowledgeCollection.HasWarningsOrErrors())
JavaScript
var booleanResponse = knowledgeCollection.HasWarningsOrErrors();
Returns
Boolean
ThrowErrors
Velocity
$knowledgeCollection.ThrowErrors()
JavaScript
knowledgeCollection.ThrowErrors();