chatsharp/ChatSharp/Events/ErrorReplieEventArgs.cs

20 lines
478 B
C#
Raw Permalink Normal View History

using System;
namespace ChatSharp.Events
{
/// <summary>
2022-04-12 20:14:48 +00:00
/// Raised when a IRC Error reply occurs. See rfc1459 6.1 for details.
/// </summary>
2017-01-05 08:08:00 +00:00
public class ErrorReplyEventArgs : EventArgs
{
2017-01-05 08:08:00 +00:00
internal ErrorReplyEventArgs(IrcMessage message)
{
Message = message;
}
2022-04-12 20:14:48 +00:00
/// <summary>
/// The IRC error reply that has occured.
/// </summary>
public IrcMessage Message { get; set; }
}
2022-04-12 20:14:48 +00:00
}