Itenso.Rtf.Parser.RtfParser.DoParse C# (CSharp) Method

DoParse() protected method

protected DoParse ( IRtfSource rtfTextSource ) : void
rtfTextSource IRtfSource
return void
        protected override void DoParse( IRtfSource rtfTextSource )
        {
            NotifyParseBegin();
            try
            {
                ParseRtf( rtfTextSource.Reader );
                NotifyParseSuccess();
            }
            catch ( RtfException e )
            {
                NotifyParseFail( e );
                throw;
            }
            finally
            {
                NotifyParseEnd();
            }
        }