MsgFlags (ws2_32)
Last changed: anonymous

.
Summary
TODO - a short description

C# Signature:

    public enum MsgFlags : int
    {
        /// <summary>
        /// Processes Out Of Band (OOB) data.
        /// </summary>
        MSG_OOB = 0x1,

        /// <summary>
        /// Peeks at the incoming data. The data is copied into the buffer,
        /// but is not removed from the input queue.
        /// </summary>
        MSG_PEEK = 0x2,

        /// <summary>
        /// send without using routing tables
        /// </summary>
        MSG_DONTROUTE = 0x4,

        /// <summary>
        /// The receive request will complete only when one of the following events occurs:
        /// </summary>
        MSG_WAITALL = 0x8,

        /// <summary>
        /// partial send or recv for message xport
        /// </summary>
        MSG_PARTIAL = 0x8000,

        /// <summary>
        /// ???? ... ???
        /// </summary>
        MSG_DONTWAIT = 0x1000000
    }

VB Signature:

User-Defined Types:

None.

Alternative Managed API:

Do you know one? Please contribute it!

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Documentation
MsgFlags on MSDN