@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: TODO - a short description !!!!C# Signature: [DllImport("Ws2_32.dll")] public static extern int setsockopt(IntPtr s, SocketOptionLevel level, SocketOptionName optname, ref int optval, int optlen); !!!!VB Signature: Declare Function setsockopt Lib "ws2_32.dll" (TODO) As TODO !!!!User-Defined Types: None. !!!!Alternative Managed API: Do you know one? Please contribute it! !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!Sample Code: public int ReceiveTimeout { get { int optval, optlen = 4; Native.getsockopt(socketPtr, Native.SocketOptionLevel.Socket, Native.SocketOptionName.ReceiveTimeout, out optval, ref optlen); return optval; } set { int optval = value, optlen = 4; Native.setsockopt(socketPtr, Native.SocketOptionLevel.Socket, Native.SocketOptionName.ReceiveTimeout, ref optval, optlen); } } Documentation: setsockopt@msdn on MSDN
Edit ws2_32.setsockopt
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.