C# 클래스 NetIRC.Messages.ParsedMessage

파일 보기 프로젝트 열기: kevin-brown/NetIRC 1 사용 예제들

공개 메소드들

메소드 설명
GetCTCP ( ) : string

Gets the CTCP message or null

GetCTCP ( string message ) : string

Gets the CTCP message or null

GetCTCPCommand ( ) : string

Gets the CTCP command

GetCTCPCommand ( string message ) : string

Gets the CTCP command

GetCTCPParameter ( ) : string

Gets the CTCP arguments

GetCTCPParameter ( string message ) : string

Gets the CTCP arguments

GetChannel ( ) : Channel

Gets the Channel the message is targeted at or null

GetChannel ( string channel ) : Channel

Gets or generates a Channel object from the ChannelFactory

GetUser ( ) : User

Gets the User who sent the message or null

GetUser ( string userString ) : User

Gets or generates a User object from the UserFactory

GetUserFromMask ( string userMask ) : User

Gets or generates a User object from the UserFactory

GetUserFromNick ( string nick ) : User

Gets or generates a User object from the UserFactory

HasCTCPParameter ( ) : bool

Checks if the ctcp message contains parameters

HasCTCPParameter ( string message ) : bool

Checks if the ctcp message contains parameters

IsCTCP ( ) : bool

Checks if the message is a Client-to-client protocol message

IsCTCP ( string message ) : bool

Checks if the message is a Client-to-client protocol message

IsChannel ( ) : bool

Determines whether the message is targeted at a channel

IsChannel ( string channel ) : bool

Determines whether the given channel is valid

IsNumeric ( ) : bool

Checks if the message is a numeric one

IsUser ( ) : bool

Determines whether the message is originated from a user

IsUser ( string userMask ) : bool

Determines whether the given userMask is valid

ParsedMessage ( Client client, string message ) : System

메소드 상세

GetCTCP() 공개 메소드

Gets the CTCP message or null
public GetCTCP ( ) : string
리턴 string

GetCTCP() 공개 정적인 메소드

Gets the CTCP message or null
public static GetCTCP ( string message ) : string
message string
리턴 string

GetCTCPCommand() 공개 메소드

Gets the CTCP command
public GetCTCPCommand ( ) : string
리턴 string

GetCTCPCommand() 공개 정적인 메소드

Gets the CTCP command
public static GetCTCPCommand ( string message ) : string
message string
리턴 string

GetCTCPParameter() 공개 메소드

Gets the CTCP arguments
public GetCTCPParameter ( ) : string
리턴 string

GetCTCPParameter() 공개 정적인 메소드

Gets the CTCP arguments
public static GetCTCPParameter ( string message ) : string
message string
리턴 string

GetChannel() 공개 메소드

Gets the Channel the message is targeted at or null
public GetChannel ( ) : Channel
리턴 Channel

GetChannel() 공개 메소드

Gets or generates a Channel object from the ChannelFactory
public GetChannel ( string channel ) : Channel
channel string
리턴 Channel

GetUser() 공개 메소드

Gets the User who sent the message or null
public GetUser ( ) : User
리턴 User

GetUser() 공개 메소드

Gets or generates a User object from the UserFactory
public GetUser ( string userString ) : User
userString string
리턴 User

GetUserFromMask() 공개 메소드

Gets or generates a User object from the UserFactory
public GetUserFromMask ( string userMask ) : User
userMask string
리턴 User

GetUserFromNick() 공개 메소드

Gets or generates a User object from the UserFactory
public GetUserFromNick ( string nick ) : User
nick string
리턴 User

HasCTCPParameter() 공개 메소드

Checks if the ctcp message contains parameters
public HasCTCPParameter ( ) : bool
리턴 bool

HasCTCPParameter() 공개 정적인 메소드

Checks if the ctcp message contains parameters
public static HasCTCPParameter ( string message ) : bool
message string
리턴 bool

IsCTCP() 공개 메소드

Checks if the message is a Client-to-client protocol message
public IsCTCP ( ) : bool
리턴 bool

IsCTCP() 공개 정적인 메소드

Checks if the message is a Client-to-client protocol message
public static IsCTCP ( string message ) : bool
message string
리턴 bool

IsChannel() 공개 메소드

Determines whether the message is targeted at a channel
public IsChannel ( ) : bool
리턴 bool

IsChannel() 공개 메소드

Determines whether the given channel is valid
public IsChannel ( string channel ) : bool
channel string
리턴 bool

IsNumeric() 공개 메소드

Checks if the message is a numeric one
public IsNumeric ( ) : bool
리턴 bool

IsUser() 공개 메소드

Determines whether the message is originated from a user
public IsUser ( ) : bool
리턴 bool

IsUser() 공개 메소드

Determines whether the given userMask is valid
public IsUser ( string userMask ) : bool
userMask string
리턴 bool

ParsedMessage() 공개 메소드

public ParsedMessage ( Client client, string message ) : System
client Client
message string
리턴 System