Inheritance: IHostProxy, IStandInStub
コード例 #1
0
ファイル: SyncBus.cs プロジェクト: kouweizhong/NPantaRhei
        StandInTransceiver RegisterStandIn(string standInName, string hostName)
        {
            var trans = new StandInTransceiver(standInName, hostName, SendFromStandInToHost);

            _standIns.Add(standInName, trans);
            return(trans);
        }
コード例 #2
0
ファイル: SyncBus.cs プロジェクト: kennychou0529/NPantaRhei
 StandInTransceiver RegisterStandIn(string standInName, string hostName)
 {
     var trans = new StandInTransceiver(standInName, hostName, SendFromStandInToHost);
     _standIns.Add(standInName, trans);
     return trans;
 }