shutdown (ws2_32)
Last changed: anonymous

.
Summary
TODO - a short description

C# Signature:

    [DllImport("ws2_32.dll", CharSet = CharSet.Unicode, SetLastError = true)]
    public static extern int shutdown(IntPtr s, ShutDownFlags how);

VB Signature:

Declare Function shutdown Lib "ws2_32.dll" (TODO) As TODO

User-Defined Types:

    public enum ShutDownFlags : int
    {
        SD_RECEIVE = 0,
        SD_SEND = 1,
        SD_BOTH = 2
    }

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
shutdown on MSDN