You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
260 B
C#

using System;
using System.Net.Sockets;
namespace HuizhongLibrary.Network
{
/// <summary>
/// EventArgs class holding a Socket.
/// </summary>
public class SocketEventArgs : EventArgs
{
public Socket Socket { get; set; }
}
}