Table of Contents

Class StateMessage

Namespace
SunamoData.Data
Assembly
SunamoData.dll

Represents a state message with a type and text content.

public class StateMessage
Inheritance
StateMessage
Inherited Members
Extension Methods

Constructors

StateMessage(string, string)

Initializes a new instance of the StateMessage class.

public StateMessage(string messageType, string message)

Parameters

messageType string

The type of the message.

message string

The message text.

Properties

Message

Gets or sets the message text.

protected string Message { get; set; }

Property Value

string

MessageType

Gets or sets the message type.

protected string MessageType { get; set; }

Property Value

string

TextMessage

Gets the text content of the message.

public string TextMessage { get; }

Property Value

string

TypeOfMessage

Gets the type of the message.

public string TypeOfMessage { get; }

Property Value

string