Content created on the site must implement this interface for the social services to support it.
StatusMessage is defined in the Telligent.Evolution.Extensibility.Api.Entities.Version1 namespace of Telligent.Evolution.Platform.dll
Definition
class StatusMessage
{
Application Application { get; }
string AttachedUrl { get; set; }
User Author { get; set; }
string Body { get; set; }
Guid ContentId { get; }
DateTime? CreatedDate { get; set; }
Group Group { get; set; }
Guid? Id { get; set; }
bool IsPublished { get; set; }
DateTime? LastUpdate { get; set; }
string RenderedBody { get; set; }
IList<ReplyMessage> Replies { get; set; }
int ReplyCount { get; set; }
string Url { get; set; }
string Message(string target);
}
Properties
| Name | Type | Description | Default | Options |
|---|---|---|---|---|
| Application | Application | |||
| AttachedUrl | string | |||
| Author | User | |||
| Body | string | |||
| ContentId | Guid | A Guid uniquely identifying the content. | ||
| CreatedDate | DateTime? | |||
| Group | Group | |||
| Id | Guid? | |||
| IsPublished | bool | |||
| LastUpdate | DateTime? | |||
| RenderedBody Obsolete | string | |||
| Replies Obsolete | IList<ReplyMessage> | Use Comments Api instead | ||
| ReplyCount | int | |||
| Url | string | A Url to the content on the site. |
Methods
string Message(string target);
Parameters
| Name | Type | Description | Required | Default | Options |
|---|---|---|---|---|---|
| target | string | Target | Required |
Return Type
string