Content created on the site must implement this interface for the social services to support it.
Wiki
is defined in the Telligent.Evolution.Extensibility.Api.Entities.Version1
namespace of Telligent.Evolution.Wikis.dll
Definition
class Wiki { Guid ApplicationId { get; set; } int CommentCount { get; set; } Guid ContentId { get; } string Description { get; set; } bool Enabled { get; set; } Group Group { get; set; } int? Id { get; set; } string Key { get; set; } DateTime? LastModifiedDate { get; set; } DateTime? LastModifiedUtcDate { get; set; } string Name { get; set; } int PageCount { get; set; } string Url { get; set; } string HtmlDescription(string target); }
Properties
Name | Type | Description | Default | Options |
---|---|---|---|---|
ApplicationId | Guid | A Guid uniquely identifying the application. | ||
CommentCount | int | |||
ContentId | Guid | A Guid uniquely identifying the content. | ||
Description | string | |||
Enabled | bool | |||
Group | Group | |||
Id | int? | |||
Key | string | |||
LastModifiedDate | DateTime? | |||
LastModifiedUtcDate | DateTime? | |||
Name | string | |||
PageCount | int | |||
Url | string | A Url to the application on the site. |
Methods
string HtmlDescription(string target);
This method should return the Html encoded description of the application. Possible values for “target” are “Web”, “Email”, “WebServices”, or “raw”. When “raw” is specified as the target, the description should not be encoded or have any special rendering done to it. If there is no description, an empty string should be returned.
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
target | string | Target | Required |
Return Type
string