コード例 #1
0
        public void ClosedDataConnection(object sender, EventArgs e)
        {
            if (0 != Buffer.Count)
            {
                Write(String.Join("\n", Buffer));
            }

            CloseDataConnectionEvent?.Invoke(this, new CloseDataConnectionEventArgs());
        }
コード例 #2
0
        public void ClosedDataConnection(object sender, EventArgs e)
        {
            if (Buffer.Count != 0 && outputContent.MissingLLVM == false)
            {
                Write(String.Join("\n", Buffer));
            }

            CloseDataConnectionEvent?.Invoke(this, new CloseDataConnectionEventArgs());
            OnErrorDetected(this, e);
        }
コード例 #3
0
        public void ClosedDataConnection(object sender, EventArgs e)
        {
            if (0 != Buffer.Count)
            {
                Write(String.Join("\n", Buffer));
            }

            CloseDataConnectionEvent?.Invoke(this, new CloseDataConnectionEventArgs());

            if (0 != Errors.Count)
            {
                OnErrorDetected(new ErrorDetectedEventArgs(Errors));
            }
        }