123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.InteropServices;
- using System.Text;
- namespace HPSocketCS.Extended
- {
-
-
-
- [StructLayout(LayoutKind.Sequential)]
- public class ClientInfo
- {
-
-
-
- public IntPtr ConnId { get; set; }
-
-
-
- public string IpAddress { get; set; }
-
-
-
- public ushort Port { get; set; }
- public string Message { get; set; }
- }
- }
|