chatsharp/ChatSharp/Events/SocketErrorEventArgs.cs
2015-03-15 21:38:55 +01:00

16 lines
312 B
C#

using System;
using System.Net.Sockets;
namespace ChatSharp.Events
{
public class SocketErrorEventArgs : EventArgs
{
public SocketError SocketError { get; set; }
public SocketErrorEventArgs(SocketError socketError)
{
SocketError = socketError;
}
}
}