コード例 #1
0
        public void executeSubmit(out String aP0_content)
        {
            testwebs objtestwebs;

            objtestwebs            = new testwebs();
            objtestwebs.AV9content = "";
            objtestwebs.context.SetSubmitInitialConfig(context);
            objtestwebs.initialize();
            ThreadPool.QueueUserWorkItem(PropagateCulture(new WaitCallback(executePrivateCatch)), objtestwebs);
            aP0_content = this.AV9content;
        }
コード例 #2
0
 public void execute(out String content)
 {
     content = "";
     try
     {
         if (!ProcessHeaders("testwebs"))
         {
             return;
         }
         testwebs worker = new testwebs(context);
         worker.IsMain = RunAsMain;
         worker.execute(out content);
         worker.cleanup( );
     }
     catch (Exception e)
     {
         WebException(e);
     }
     finally
     {
         Cleanup();
     }
 }