Class ChatMessage
Represents a chat message
Inheritance
System.Object
System.EventArgs
ChatMessage
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: GravyIrc
Assembly: GravyIrc.dll
Syntax
public class ChatMessage : EventArgs
Constructors
| Improve this Doc View SourceChatMessage(User, String)
Declaration
public ChatMessage(User user, string text)
Parameters
Type | Name | Description |
---|---|---|
User | user | |
System.String | text |
Properties
| Improve this Doc View SourceDate
Declaration
public DateTime Date { get; }
Property Value
Type | Description |
---|---|
System.DateTime |
Text
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
System.String |
User
Declaration
public User User { get; }
Property Value
Type | Description |
---|---|
User |