KLFServer.ServerClient.asyncSend C# (CSharp) 메소드

asyncSend() 개인적인 메소드

private asyncSend ( IAsyncResult result ) : void
result IAsyncResult
리턴 void
        private void asyncSend(IAsyncResult result)
        {
            try
            {
                tcpClient.GetStream().EndWrite(result);
            }
            catch (InvalidOperationException)
            {
            }
            catch (System.IO.IOException)
            {
            }
            catch (ThreadAbortException)
            {
            }
            catch (Exception e)
            {
                parent.passExceptionToMain(e);
            }
        }