using System; using System.Net; namespace ZeroLevel.Network { public interface ISocketClient: IDisposable { event Action<ISocketClient> OnConnect; event Action<ISocketClient> OnDisconnect; IPEndPoint Endpoint { get; } SocketClientStatus Status { get; } IRouter Router { get; } bool Send(Frame data); bool Request(Frame data, Action<byte[]> callback, Action<string> fail = null); bool Response(byte[] data, int identity); } }