Show / Hide Table of Contents

Class KickMessage

A message received when a user is kicked from a channel

Inheritance
System.Object
IrcMessage
KickMessage
Implements
IServerMessage
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("KICK")]
public class KickMessage : IrcMessage, IServerMessage

Constructors

| Improve this Doc View Source

KickMessage(ParsedIrcMessage)

Creates a new instance from an incoming server message

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

Incoming message

Properties

| Improve this Doc View Source

Channel

Name of the channel that the user was kicked from

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

KickedBy

Nick of the user that performed the kick

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

Nick

Nick of the user that was kicked

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

Implements

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