Exemplo n.º 1
0
 public void execute(out SdtContext aP0_Context)
 {
     this.AV8Context = new SdtContext(context);
     initialize();
     executePrivate();
     aP0_Context = this.AV8Context;
 }
Exemplo n.º 2
0
        public void executeSubmit(SdtContext aP0_Context)
        {
            setcontext objsetcontext;

            objsetcontext            = new setcontext();
            objsetcontext.AV8Context = aP0_Context;
            objsetcontext.context.SetSubmitInitialConfig(context);
            objsetcontext.initialize();
            ThreadPool.QueueUserWorkItem(new WaitCallback(executePrivateCatch), objsetcontext);
        }
Exemplo n.º 3
0
        public void executeSubmit(out SdtContext aP0_Context)
        {
            loadcontext objloadcontext;

            objloadcontext            = new loadcontext();
            objloadcontext.AV8Context = new SdtContext(context);
            objloadcontext.context.SetSubmitInitialConfig(context);
            objloadcontext.initialize();
            ThreadPool.QueueUserWorkItem(new WaitCallback(executePrivateCatch), objloadcontext);
            aP0_Context = this.AV8Context;
        }
Exemplo n.º 4
0
 public void execute(SdtContext aP0_Context)
 {
     this.AV8Context = aP0_Context;
     initialize();
     executePrivate();
 }