System\ServiceModel\Security\SecuritySessionServerSettings.cs (13)
2654IAsyncResult result = channel.ChannelBinder.BeginTryReceive(this.timeoutHelper.RemainingTime(), onReceive, this);
2666this.expired = !channel.ChannelBinder.EndTryReceive(result, out this.innerRequestContext);
2700result = channel.ChannelBinder.BeginTryReceive(this.timeoutHelper.RemainingTime(), onReceive, this);
3515return this.ChannelBinder.WaitForRequest(timeout);
3520return this.ChannelBinder.BeginWaitForRequest(timeout, callback, state);
3525return this.ChannelBinder.EndWaitForRequest(result);
3605return this.ChannelBinder.RemoteAddress;
3635this.ChannelBinder.Send(message, timeoutHelper.RemainingTime());
3648return this.ChannelBinder.BeginSend(message, timeoutHelper.RemainingTime(), callback, state);
3653this.ChannelBinder.EndSend(result);
4017return this.ChannelBinder.WaitForRequest(timeout);
4022return this.ChannelBinder.BeginWaitForRequest(timeout, callback, state);
4027return this.ChannelBinder.EndWaitForRequest(result);