C# 클래스 IrcDotNet.IrcClient.IrcMessage

파일 보기 프로젝트 열기: IrcDotNet/IrcDotNet

공개 프로퍼티들

프로퍼티 타입 설명
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