Пример #1
0
 void OnApplicationQuit()
 {
     if (tcpSocket != null)
     {
         tcpSocket.Dispose();
     }
 }
Пример #2
0
        public async Task Execute(TCPSocket h)
        {
            this.handler = h;
            var buff = new byte[1024];
           await handler.ReceiveData(buff);
           await Respond( await GetData(buff));        
            handler.Dispose();

        }
Пример #3
0
        private bool disposedValue = false; // To detect redundant calls

        protected virtual void Dispose(bool disposing)
        {
            if (!disposedValue)
            {
                if (disposing)
                {
                    // TODO: dispose managed state (managed objects).

                    socket.Dispose();
                }

                // TODO: free unmanaged resources (unmanaged objects) and override a finalizer below.
                // TODO: set large fields to null.

                disposedValue = true;
            }
        }