System\ServiceModel\Security\SecuritySessionClientSettings.cs (9)
821this.ChannelBinder.Send(closeMessage, timeoutHelper.RemainingTime());
841this.ChannelBinder.Send(message, timeoutHelper.RemainingTime());
1404if (this.ChannelBinder.TryReceive(timeoutHelper.RemainingTime(), out requestContext))
1859IAsyncResult result = channel.ChannelBinder.BeginTryReceive(timeoutHelper.RemainingTime(), onReceive, this);
1876if (channel.ChannelBinder.EndTryReceive(result, out requestContext))
1894result = channel.ChannelBinder.BeginTryReceive(timeoutHelper.RemainingTime(), onReceive, this);
2568return this.sessionChannel.ChannelBinder;
2940Message reply = this.ChannelBinder.Request(message, timeoutHelper.RemainingTime());
3261this.ChannelBinder.Send(message, timeoutHelper.RemainingTime());