1 write to channelFactory
System.ServiceModel (1)
System\ServiceModel\Channels\PeerNeighborManager.cs (1)
1065
this.
channelFactory
= new DuplexChannelFactory<IPeerProxy>(instanceContext, binding, meshEprBuilder.ToEndpointAddress());
16 references to channelFactory
System.ServiceModel (16)
System\ServiceModel\Channels\PeerNeighborManager.cs (16)
988
if (this.
channelFactory
!= null)
989
this.
channelFactory
.Abort();
1036
if (this.
channelFactory
!= null)
1037
return this.
channelFactory
.BeginClose(callback, asyncState);
1060
if (this.
channelFactory
!= null)
1066
this.
channelFactory
.Endpoint.Behaviors.Add(new ClientViaBehavior(remoteAddress.Uri));
1067
this.
channelFactory
.Endpoint.Behaviors.Add(new PeerNeighborBehavior(this));
1068
this.
channelFactory
.Endpoint.Contract.Behaviors.Add(new PeerOperationSelectorBehavior(this.messageHandler));
1069
this.config.SecurityManager.ApplyClientSecurity(
channelFactory
);
1070
this.
channelFactory
.Open(timeoutHelper.RemainingTime());
1071
this.Proxy = this.
channelFactory
.CreateChannel();
1100
this.
channelFactory
.Abort();
1105
if (this.
channelFactory
!= null)
1106
this.
channelFactory
.EndClose(result);
1146
if (this.closeInitiator != PeerCloseInitiator.LocalNode && this.
channelFactory
!= null)
1147
this.
channelFactory
.Abort();