123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Net;
- namespace SuperSocket.SocketBase
- {
-
-
-
- public interface ISessionBase
- {
-
-
-
- string SessionID { get; }
-
-
-
- IPEndPoint RemoteEndPoint { get; }
- }
- }
|