C# 클래스 IrcDotNet.Ctcp.CtcpErrorMessageReceivedEventArgs

Provides data for the CtcpClient.ErrorMessageReceived event.
상속: CtcpResponseReceivedEventArgs
파일 보기 프로젝트 열기: IrcDotNet/IrcDotNet 1 사용 예제들

공개 메소드들

메소드 설명
CtcpErrorMessageReceivedEventArgs ( IrcUser user, string noErrorMessage ) : System

Initializes a new instance of the CtcpErrorMessageReceivedEventArgs class, specifying that no error occurred.

CtcpErrorMessageReceivedEventArgs ( IrcUser user, string failedQuery, string errorMessage ) : System

Initializes a new instance of the CtcpErrorMessageReceivedEventArgs class, specifying the query that failed with an error message.

메소드 상세

CtcpErrorMessageReceivedEventArgs() 공개 메소드

Initializes a new instance of the CtcpErrorMessageReceivedEventArgs class, specifying that no error occurred.
public CtcpErrorMessageReceivedEventArgs ( IrcUser user, string noErrorMessage ) : System
user IrcUser
noErrorMessage string The message indicating that no error occurred.
리턴 System

CtcpErrorMessageReceivedEventArgs() 공개 메소드

Initializes a new instance of the CtcpErrorMessageReceivedEventArgs class, specifying the query that failed with an error message.
public CtcpErrorMessageReceivedEventArgs ( IrcUser user, string failedQuery, string errorMessage ) : System
user IrcUser
failedQuery string A string containing the query that failed.
errorMessage string The message describing the error that occurred for the remote user.
리턴 System