コード例 #1
0
 internal void end()
 {
     if (null != commServer)
     {
         commServer.IpcServerStop();
     }
 }
コード例 #2
0
ファイル: Server.cs プロジェクト: ha11owed/RPC
        public void Stop()
        {
            lock (sync)
            {
                if (ipcServer != null)
                {
                    ipcServer.IpcServerStop();
                }

                ipcServer = null;
            }
        }
コード例 #3
0
ファイル: IpcServer.cs プロジェクト: reyaleman/CSNamedPipes
 public void Stop()
 {
     m_srv.IpcServerStop();
 }
コード例 #4
0
 public void Dispose()
 {
     server.IpcServerStop();
 }