Esempio n. 1
0
 public ContentParser(IBaseEventParserCallback callback, Type type)
 {
     this.callback = callback;
     this.type     = type;
 }
Esempio n. 2
0
 public EccManager(IBaseEventParserCallback callback, IEccExceptionListener eccExceptionListener)
 {
     Parser = new ContentParser(callback);
     this.ExceptionListener = eccExceptionListener;
 }
Esempio n. 3
0
 public ContentParser(IBaseEventParserCallback callback)
 {
     this.callback = callback;
     this.type     = callback.GetType();
 }
Esempio n. 4
0
 public EccManager(IBaseEventParserCallback callback)
 {
     Parser = new ContentParser(callback);
 }