Пример #1
0
 public RTFReader(String rtf, RTFHandler handler, bool strict = true)
 {
     _stream = new PushbackReader(new StringReader(rtf));
     _handler = handler;
     _strict = strict;
 }
 public RTFReader(String rtf, RTFHandler handler, bool strict = true)
 {
     _stream  = new PushbackReader(new StringReader(rtf));
     _handler = handler;
     _strict  = strict;
 }
Пример #3
0
 public RTFReader(TextReader reader, RTFHandler handler, bool strict = true)
 {
     _stream = new PushbackReader(reader);
     _handler = handler;
     _strict = strict;
 }
 public RTFReader(TextReader reader, RTFHandler handler, bool strict = true)
 {
     _stream  = new PushbackReader(reader);
     _handler = handler;
     _strict  = strict;
 }