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