C# Class PoEWhisperNotifier.MessageData

An immutable struct that provides information about a single PoE message.
Afficher le fichier Open project: Kapps/PoEWhisperNotifier Class Usage Examples

Méthodes publiques

Свойство Type Description
Date System.DateTime
Message string
MessageType LogMessageType
Sender string

Méthodes publiques

Méthode Description
MessageData ( System.DateTime Date, string Sender, string Message, LogMessageType MessageType ) : System

Method Details

MessageData() public méthode

public MessageData ( System.DateTime Date, string Sender, string Message, LogMessageType MessageType ) : System
Date System.DateTime
Sender string
Message string
MessageType LogMessageType
Résultat System

Property Details

Date public_oe property

The date the message was parsed (may not be exactly when it was received).
public DateTime,System Date
Résultat System.DateTime

Message public_oe property

The contents of the message, as entered by the sender.
public string Message
Résultat string

MessageType public_oe property

The type of the message that was received (such as a whisper or disconnect).
public LogMessageType MessageType
Résultat LogMessageType

Sender public_oe property

The name of the user who sent the message. This value may be null for some message types.
public string Sender
Résultat string