コード例 #1
0
 public void Dispose()
 {
     if (Service != null)
     {
         Service.Dispose();
         Service = null;
     }
 }
コード例 #2
0
 public ProxyFrame()
 {
     if (GlobalAppConfig.RunningMode == 2)
     {
         Service = Function.UnitySection("unity.xml", "unityConsole", "frame").Resolve <ItfFrame>();
     }
     else if (GlobalAppConfig.RunningMode == 3)
     {
         try
         {
             Service = WcfEndpoint.Fac <ItfFrame>().CreateChannel(WcfEndpoint.HisEndpointAddress(this.GetType().Name));
             Service.Verify();
         }
         catch
         {
             if (WcfEndpoint.AllowChange)
             {
                 WcfEndpoint.ChangeServer();
                 Service = WcfEndpoint.Fac <ItfFrame>().CreateChannel(WcfEndpoint.HisEndpointAddress(this.GetType().Name));
             }
         }
     }
 }