ReloadGrammarAndLexicon() public method

public ReloadGrammarAndLexicon ( ) : void
return void
Example #1
0
        // used by Try a Word to get the parser running
        public bool OnReInitParser(object argument)
        {
            CheckDisposed();

            if (m_parserConnection == null)
            {
                ConnectToParser();
            }
            else
            {
                m_parserConnection.ReloadGrammarAndLexicon();
            }
            return(true);            //we handled this.
        }