C# 클래스 IrcDotNet.IrcMessageEventArgs

Provides data for events that are raised when an IRC message or notice is sent or received.
상속: System.EventArgs
파일 보기 프로젝트 열기: IrcDotNet/IrcDotNet 1 사용 예제들

공개 메소드들

메소드 설명
GetText ( Encoding encoding = null ) : string

Gets the text of the message in the specified encoding.

IrcMessageEventArgs ( IIrcMessageSource source, IList targets, string text, Encoding encoding ) : System.Net.Security

Initializes a new instance of the IrcMessageEventArgs class.

메소드 상세

GetText() 공개 메소드

Gets the text of the message in the specified encoding.
public GetText ( Encoding encoding = null ) : string
encoding System.Text.Encoding /// The encoding in which to get the message text, or to use the /// default encoding. ///
리턴 string

IrcMessageEventArgs() 공개 메소드

Initializes a new instance of the IrcMessageEventArgs class.
is . is .
public IrcMessageEventArgs ( IIrcMessageSource source, IList targets, string text, Encoding encoding ) : System.Net.Security
source IIrcMessageSource The source of the message.
targets IList A list of the targets of the message.
text string The text of the message.
encoding System.Text.Encoding The encoding of the message text.
리턴 System.Net.Security