Artemis.Utilities.DataReaders.PipeServer.Stop C# (CSharp) Method

Stop() public method

public Stop ( ) : void
return void
        public void Stop()
        {
            _closed = true;
            _pipeServer.Close();
            _pipeServer.Dispose();
            _logger.Info("Closed named pipe '{0}'", _pipeName);
        }