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

40 lines
1.2 KiB
C#
Raw Permalink Normal View History

2008-03-05 09:52:00 -05:00
//------------------------------------------------------------------------------
// <copyright file="SocketShutdown.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>
/// Defines constants used by the <see cref='System.Net.Sockets.Socket.Shutdown'/> method.
/// </para>
/// </devdoc>
public enum SocketShutdown {
/// <devdoc>
/// <para>
/// Shutdown sockets for receive.
/// </para>
/// </devdoc>
Receive = 0x00,
/// <devdoc>
/// <para>
/// Shutdown socket for send.
/// </para>
/// </devdoc>
Send = 0x01,
/// <devdoc>
/// <para>
/// Shutdown socket for both send and receive.
/// </para>
/// </devdoc>
Both = 0x02,
}; // enum SocketShutdown
} // namespace System.Net.Sockets