1 write to channelBinder
System.ServiceModel (1)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (1)
1164
this.
channelBinder
= channelBinder;
27 references to channelBinder
System.ServiceModel (27)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (27)
1166
this.
channelBinder
.Faulted += this.OnInnerFaulted;
1202
return this.
channelBinder
;
1218
return this.
channelBinder
.LocalAddress;
1254
if (this.
channelBinder
!= null)
1256
this.
channelBinder
.Abort();
1284
if (this.
channelBinder
!= null)
1286
this.
channelBinder
.Close(timeoutHelper.RemainingTime());
1353
if (this.
channelBinder
.LocalAddress == null)
1356
return this.
channelBinder
.LocalAddress.Uri;
1545
if (!
channelBinder
.TryReceive(timeoutHelper.RemainingTime(), out innerRequestContext))
1674
if (typeof(T) == typeof(FaultConverter) && (this.
channelBinder
!= null))
1676
return new SecurityChannelFaultConverter(this.
channelBinder
.Channel) as T;
1680
if ((result == null) && (
channelBinder
!= null) && (
channelBinder
.Channel != null))
1682
result =
channelBinder
.Channel.GetProperty<T>();
1693
if (!(this.
channelBinder
.Channel is IReplyChannel) && !(this.
channelBinder
.Channel is IDuplexSessionChannel))
2156
if (this.
channelBinder
.CanSendAsynchronously)
2158
this.
channelBinder
.Send(message, timeout);
2219
if (this.sessionChannel.
channelBinder
.CanSendAsynchronously)
2221
return this.sessionChannel.
channelBinder
.BeginSend(response, timeoutHelper.RemainingTime(), sendCallback, this);
2241
else if (this.sessionChannel.
channelBinder
.CanSendAsynchronously)
2243
this.sessionChannel.
channelBinder
.EndSend(result);
2317
if (this.channel.
channelBinder
!= null)
2321
IAsyncResult result = this.channel.
channelBinder
.BeginClose(timeoutHelper.RemainingTime(), channelBinderCloseCallback, this);
2326
this.channel.
channelBinder
.EndClose(result);
2369
self.channel.
channelBinder
.EndClose(result);