IsComplete() public method

public IsComplete ( ) : bool
return bool
Beispiel #1
0
        public void ExecuteConsoleCommand(string command)
        {
            parser.Append(command);
            if (parser.IsComplete())
            {
                AbortBackgroudThread();

                parser.Execute();
                parser.Reset();

                NotifyStateChange();
            }
        }