12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace SuperSocket.SocketBase
- {
-
-
-
-
-
- public delegate void SessionHandler<TAppSession>(TAppSession session)
- where TAppSession : IAppSession;
-
-
-
-
-
-
-
- public delegate void SessionHandler<TAppSession, TParam>(TAppSession session, TParam value)
- where TAppSession : IAppSession;
- }
|