singrdk/base/Libraries/System.Net/Sockets/SelectMode.cs

37 lines
1.2 KiB
C#
Raw Normal View History

2008-03-05 09:52:00 -05:00
//------------------------------------------------------------------------------
// <copyright file="SelectMode.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
2008-11-17 18:29:00 -05:00
namespace System.Net.Sockets
{
2008-03-05 09:52:00 -05:00
using System;
/// <devdoc>
/// <para>
/// Specifies the mode for polling the status of a socket.
/// </para>
/// </devdoc>
public enum SelectMode {
/// <devdoc>
/// <para>
/// Poll the read status of a socket.
/// </para>
/// </devdoc>
SelectRead = 0,
/// <devdoc>
/// <para>
/// Poll the write status of a socket.
/// </para>
/// </devdoc>
SelectWrite = 1,
/// <devdoc>
/// <para>
/// Poll the error status of a socket.
/// </para>
/// </devdoc>
SelectError = 2
} // enum SelectMode
} // namespace System.Net.Sockets