//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.Net.Sockets { using System; /// /// /// Defines constants used by the method. /// /// public enum SocketShutdown { /// /// /// Shutdown sockets for receive. /// /// Receive = 0x00, /// /// /// Shutdown socket for send. /// /// Send = 0x01, /// /// /// Shutdown socket for both send and receive. /// /// Both = 0x02, }; // enum SocketShutdown } // namespace System.Net.Sockets