//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Net.Sockets { using System; /// /// /// Specifies the mode for polling the status of a socket. /// /// public enum SelectMode { /// /// /// Poll the read status of a socket. /// /// SelectRead = 0, /// /// /// Poll the write status of a socket. /// /// SelectWrite = 1, /// /// /// Poll the error status of a socket. /// /// SelectError = 2 } // enum SelectMode } // namespace System.Net.Sockets