12345678910111213141516171819202122232425262728293031323334353637383940 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Net;
- using System.Security.Authentication;
- namespace SuperSocket.SocketBase
- {
-
-
-
- [Serializable]
- public class ListenerInfo
- {
-
-
-
-
-
-
- public IPEndPoint EndPoint { get; set; }
-
-
-
-
-
-
- public int BackLog { get; set; }
-
-
-
-
-
-
- public SslProtocols Security { get; set; }
- }
- }
|