C# Class IrcDotNet.Ctcp.CtcpErrorMessageReceivedEventArgs

Provides data for the CtcpClient.ErrorMessageReceived event.
Inheritance: CtcpResponseReceivedEventArgs
Afficher le fichier Open project: IrcDotNet/IrcDotNet Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

CtcpErrorMessageReceivedEventArgs() public méthode

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.
Résultat System

CtcpErrorMessageReceivedEventArgs() public méthode

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.
Résultat System