BytesRoad.Net.Sockets.SocketEx.Shutdown C# (CSharp) Метод

Shutdown() публичный Метод

Disables sends and receives.
Calls System.Net.Sockets.Socket.Shutdown method on a socket which is used in underlying layer for communication with proxy server.
/// The object was disposed. ///
public Shutdown ( SocketShutdown how ) : void
how SocketShutdown /// One of the /// values that specifies the operation that will no longer be allowed. ///
Результат void
        public void Shutdown(SocketShutdown how)
        {
            _baseSocket.Shutdown(how);
        }
        #endregion