Show / Hide Table of Contents

Class QuitMessage

Indicates that a user has disconnected from the server or notifying that the client is disconnecting

Inheritance
System.Object
IrcMessage
QuitMessage
Implements
IServerMessage
IClientMessage
Inherited Members
IrcMessage.RegisterServerMessageType<TMessage>()
IrcMessage.RegisterServerMessageType<TMessage>(String)
IrcMessage.RegisterServerMessageType(Type)
IrcMessage.RegisterServerMessageType(Type, String)
IrcMessage.Create(ParsedIrcMessage)
IrcMessage.ToString()
IrcMessage.DateReceived
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)
Namespace: GravyIrc.Messages
Assembly: GravyIrc.dll
Syntax
[ServerMessage("QUIT")]
public class QuitMessage : IrcMessage, IServerMessage, IClientMessage

Constructors

| Improve this Doc View Source

QuitMessage(ParsedIrcMessage)

Creates a new instance from an incoming server message

Declaration
public QuitMessage(ParsedIrcMessage parsedMessage)
Parameters
Type Name Description
ParsedIrcMessage parsedMessage

Incoming message

| Improve this Doc View Source

QuitMessage(String)

Create a new outbound quit message

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

Reason for quitting

Properties

| Improve this Doc View Source

Message

Accompanying message for quit reason

Declaration
public string Message { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Nick

Nick of user disconnecting

Declaration
public string Nick { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

Tokens

Declaration
public IEnumerable<string> Tokens { get; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<System.String>

Implements

IServerMessage
IClientMessage
  • Improve this Doc
  • View Source
Back to top Generated by DocFX