コード例 #1
0
ファイル: WCFServiceApi.cs プロジェクト: EliArad/WCFStreaming
 public void CloseWCFStreamingServerOnProxy()
 {
     try
     {
         if (m_proxy != null)
         {
             m_proxy.CloseWCFStreamingServer();
         }
         else
         {
             throw (new SystemException("proxy not initialize"));
         }
     }
     catch (Exception err)
     {
         throw (new SystemException(err.Message));
     }
 }