Ejemplo n.º 1
0
 /// <include file='doc\LanguageService.uex' path='docs/doc[@for="LanguageService.LanguageService"]/*' />
 protected LanguageService()
 {
     this.codeWindowManagers = new ArrayList();
     this.sources = new ArrayList();
     this.colorizers = new ArrayList();
     this.mainThread = Thread.CurrentThread;
     this.parseRequestDone = new ParseWaitHandle(this);
 }
Ejemplo n.º 2
0
 public AsyncResult(LanguageService svc, ParseRequest request, ParseWaitHandle handle)
 {
     this.service = svc;
     this.request = request;
     this.handle = handle;
 }