コード例 #1
0
 public override void OnResetSessions()
 {
     if (InvokeRequired)
     {
         if (IsHandleCreated)
         {
             this.BeginInvoke((MethodInvoker) delegate
             {
                 Session = new RDRSession();
             });
         }
     }
     else if (IsHandleCreated)
     {
         Session = new RDRSession();
     }
 }
コード例 #2
0
 public override void OnInitDebugModule()
 {
     Session = new RDRSession();
 }