C# Класс IrcDotNet.IrcClient.IrcMessage

Показать файл Открыть проект

Открытые свойства

Свойство Тип Описание
Command string
Parameters IList
Prefix string
Source IIrcMessageSource

Открытые методы

Метод Описание
IrcMessage ( IrcClient client, string prefix, string command, IList parameters ) : System

Initializes a new instance of the IrcMessage structure.

ToString ( ) : string

Returns a string representation of this instance.

Описание методов

IrcMessage() публичный Метод

Initializes a new instance of the IrcMessage structure.
public IrcMessage ( IrcClient client, string prefix, string command, IList parameters ) : System
client IrcClient A client object that has sent/will receive the message.
prefix string The message prefix that represents the source of the message.
command string The command name; either an alphabetic word or 3-digit number.
parameters IList /// A list of the parameters to the message. Can contain a maximum of 15 items. ///
Результат System

ToString() публичный Метод

Returns a string representation of this instance.
public ToString ( ) : string
Результат string

Описание свойств

Command публичное свойство

The name of the command.
public string Command
Результат string

Parameters публичное свойство

A list of the parameters to the message.
public IList Parameters
Результат IList

Prefix публичное свойство

The message prefix.
public string Prefix
Результат string

Source публичное свойство

The source of the message, which is the object represented by the value of Prefix.
public IIrcMessageSource Source
Результат IIrcMessageSource