Content created on the site must implement this interface for the social services to support it.
Content
is defined in the Telligent.Evolution.Extensibility.Api.Entities.Version1
namespace of Telligent.Evolution.Platform.dll
Definition
class Content { Application Application { get; } string AvatarUrl { get; } Guid ContentId { get; } Guid ContentTypeId { get; } int? CreatedByUserId { get; } DateTime CreatedDate { get; } Guid DataTypeId { get; } bool IsEnabled { get; } string Url { get; set; } string HtmlDescription(string target); string HtmlName(string target); string ViewHtml(); string ViewHtml(string target); }
Properties
Name | Type | Description | Default | Options |
---|---|---|---|---|
Application | Application | |||
AvatarUrl | string | Url to an image particular to the content or content type. If none, return null. | ||
ContentId | Guid | A Guid uniquely identifying the content. | ||
ContentTypeId | Guid | A Guid identifying the type of content. All content of the same type (i.e. wiki page) will have the same value here. | ||
CreatedByUserId | int? | The Id of the user who originated the content. | ||
CreatedDate | DateTime | The date the content was created. | ||
DataTypeId Obsolete | Guid | Migrate usage to scripted email or scripted plugins. | ||
IsEnabled | bool | A flag representing whether the content is enabled. This can be a wrapper for approval states, etc. | ||
Url | string | A Url to the content on the site. |
Methods
string HtmlDescription(string target);
Return the Html encoded description of the content (the body, for example). 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.
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
target | string | Target | Required |
Return Type
string
string HtmlName(string target);
Return the Html encoded name of the content (the subject for example). Possible values for “target” are “Web”, “Email”, or “raw”. When “raw” is specified as the target, the name should not be encoded.
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
target | string | Target | Required |
Return Type
string
string ViewHtml();
Return Type
string
string ViewHtml(string target);
Parameters
Name | Type | Description | Required | Default | Options |
---|---|---|---|---|---|
target | string | Target | Required |
Return Type
string