C# 클래스 Yaircc.Net.IRC.ModeMessage

Represents a MODE command.
상속: Message
파일 보기 프로젝트 열기: rastating/yaircc

공개 메소드들

메소드 설명
ModeMessage ( ) : System

Initialises a new instance of the ModeMessage class.

ModeMessage ( string target ) : System

Initialises a new instance of the ModeMessage class.

TryParse ( string input ) : ParseResult

Attempts to parse the input specified by the user into the Message.

비공개 메소드들

메소드 설명
ParseBanCommand ( string payload ) : ParseResult

Parse a ban command into the message.

ParseExceptCommand ( string payload ) : ParseResult

Parse an except/unexcept command into the message.

ParseModeCommand ( string payload ) : ParseResult

Parse a mode command into the message.

ParseOpCommand ( string payload ) : ParseResult

Parse a deop/dehop/hop/op command into the message.

ParseVoiceCommand ( string payload ) : ParseResult

Parse a voice command into the message.

메소드 상세

ModeMessage() 공개 메소드

Initialises a new instance of the ModeMessage class.
public ModeMessage ( ) : System
리턴 System

ModeMessage() 공개 메소드

Initialises a new instance of the ModeMessage class.
public ModeMessage ( string target ) : System
target string The nick name of the user to receive the mode of.
리턴 System

TryParse() 공개 메소드

Attempts to parse the input specified by the user into the Message.
public TryParse ( string input ) : ParseResult
input string The input from the user.
리턴 ParseResult