コード例 #1
0
        public PubnubStandInOperation(string name, PubnubCredentials credentials, string hostChannel) : base(name)
        {
            var transceiver = new PubnubStandInTransceiver(credentials, hostChannel);

            _standInOperation = new StandInOperation(name, transceiver, transceiver);
        }
コード例 #2
0
        public WcfStandInOperation(string name, string standInEndpointAddress, string remoteEndpointAddress) : base(name)
        {
            var transceiver = new WcfStandInTransceiver(standInEndpointAddress, remoteEndpointAddress);

            _standInOperation = new StandInOperation(name, transceiver, transceiver);
        }
コード例 #3
0
ファイル: WcfStandInOperation.cs プロジェクト: ralfw/dnp2012
 public WcfStandInOperation(string name, string standInEndpointAddress, string remoteEndpointAddress)
     : base(name)
 {
     var transceiver = new WcfStandInTransceiver(standInEndpointAddress, remoteEndpointAddress);
     _standInOperation = new StandInOperation(name, transceiver, transceiver);
 }
コード例 #4
0
 public PubnubStandInOperation(string name, PubnubCredentials credentials, string hostChannel)
     : base(name)
 {
     var transceiver = new PubnubStandInTransceiver(credentials, hostChannel);
     _standInOperation = new StandInOperation(name, transceiver, transceiver);
 }