Class ActivityComment
A comment added to an Activity.
Inheritance
Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class ActivityComment : Object
Constructors
ActivityComment(Int64)
Initializes a new instance of the Activity
Declaration
public ActivityComment(long activityID)
Parameters
Type | Name | Description |
---|---|---|
System. |
activityID | The identifier of the activity this comment is related to. |
ActivityComment(Int64, String, String)
Initializes a new instance of the Activity
Declaration
public ActivityComment(long activityID, string message, string author)
Parameters
Type | Name | Description |
---|---|---|
System. |
activityID | The identifier of the activity this comment is related to. |
System. |
message | The comment message. |
System. |
author | The author of the comment. |
Properties
ActivityID
Gets or sets the identifier of the Activity that this Activity
Declaration
public virtual long ActivityID { get; }
Property Value
Type | Description |
---|---|
System. |
Author
Gets or sets the author of this Activity
Declaration
public virtual string Author { get; set; }
Property Value
Type | Description |
---|---|
System. |
Created
Gets the date and time when this Activity
Declaration
public virtual DateTime Created { get; }
Property Value
Type | Description |
---|---|
System. |
ID
Gets the identifier for this Activity
Declaration
public virtual long ID { get; }
Property Value
Type | Description |
---|---|
System. |
LastUpdated
Gets the date and time when this Activity
Declaration
public virtual DateTime LastUpdated { get; }
Property Value
Type | Description |
---|---|
System. |
Message
Gets or sets the message of this Activity
Declaration
public virtual string Message { get; set; }
Property Value
Type | Description |
---|---|
System. |