SaaS CMS has officially launched! Learn more now.

Class MessageActivity

NOTE: This is a pre-release API that is UNSTABLE and might not satisfy the compatibility requirements as denoted by its associated normal version. A message saved in the activity log.

Inheritance
System.Object
MessageActivity
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: EPiServer.DataAbstraction.Activities
Assembly: EPiServer.dll
Version: 8.11.0
Syntax
public class MessageActivity : Activity

Constructors

MessageActivity(String)

Initializes a new instance of the MessageActivity class.

Declaration
public MessageActivity(string message)
Parameters
Type Name Description
System.String message

The message that should be recorded.

Properties

LastUpdated

Gets the date and time when this MessageActivity was last updated.

Declaration
public virtual DateTime LastUpdated { get; }
Property Value
Type Description
System.DateTime

Message

Gets or sets the message content.

Declaration
public virtual string Message { get; set; }
Property Value
Type Description
System.String

RawData

Gets or sets a string representing extended information about this Activity. This is the raw format of the data as it is persisted in storage.

Declaration
protected override string RawData { get; set; }
Property Value
Type Description
System.String
Overrides

Extension Methods