@msdn=http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winsock/winsock/wsadata_2.asp @pinvoke=http://pinvoke.net/$$$.htm Summary: The WSADATA structure contains information about the Windows Sockets implementation !!!!C# Definition: [StructLayout(LayoutKind.Sequential, CharSet = CharSet.Unicode)] internal struct WSAData { internal Int16 version; internal Int16 highVersion; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 257)] internal String description; [MarshalAs(UnmanagedType.ByValTStr, SizeConst = 129)] internal String systemStatus; internal Int16 maxSockets; internal Int16 maxUdpDg; internal IntPtr vendorInfo; } !!!!User-Defined Field Types: None. !!!!Notes: dwVendorInfo is now unused (Winsock 2.0 and above) Documentation: WSADATA@msdn on MSDN
Edit Structures.WSADATA
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.