public static bool _Shutdown_System_Net_Sockets_Socket_System_Net_Sockets_SocketShutdown( )
        {
            //Parameters
            System.Net.Sockets.SocketShutdown how = null;


            //Exception
            Exception exception_Real        = null;
            Exception exception_Intercepted = null;

            InterceptionMaintenance.disableInterception( );

            try
            {
                returnValue_Real = System.Net.Sockets.Socket.Shutdown(how);
            }

            catch (Exception e)
            {
                exception_Real = e;
            }


            InterceptionMaintenance.enableInterception( );

            try
            {
                returnValue_Intercepted = System.Net.Sockets.Socket.Shutdown(how);
            }

            catch (Exception e)
            {
                exception_Intercepted = e;
            }
        }
 public void Shutdown(System.Net.Sockets.SocketShutdown how)
 {
 }
 public override void Shutdown(System.Net.Sockets.SocketShutdown how)
 {
     throw new System.NotImplementedException();
 }
Example #4
0
 /// <summary>
 /// 关闭连接
 /// </summary>
 /// <param name="how"></param>
 internal void Shutdown(System.Net.Sockets.SocketShutdown how)
 {
     socket.Shutdown(how);
 }