Show / Hide Table of Contents

Class PartMessage

A message indicating when a user leaves a channel or used to leave a channel

Inheritance
System.Object
IrcMessage
PartMessage
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("PART")]
public class PartMessage : IrcMessage, IServerMessage, IClientMessage

Constructors

| Improve this Doc View Source

PartMessage(ParsedIrcMessage)

Creates a new instance from an incoming server message

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

Incoming message

| Improve this Doc View Source

PartMessage(IEnumerable<String>)

Create a new request to leave a channel

Declaration
public PartMessage(IEnumerable<string> channels)
Parameters
Type Name Description
System.Collections.Generic.IEnumerable<System.String> channels

List of channels to leave

| Improve this Doc View Source

PartMessage(String)

Create a new request to leave a channel

Declaration
public PartMessage(string channels)
Parameters
Type Name Description
System.String channels

List of channels to leave, comma-separated

| Improve this Doc View Source

PartMessage(String[])

Creates a new instance for an outbound message

Declaration
public PartMessage(params string[] channels)
Parameters
Type Name Description
System.String[] channels

Channels to leave

Properties

| Improve this Doc View Source

Channel

Channel that the user left

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

Nick

Nick of user that left

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