1 write to _channelBinder
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (1)
27_channelBinder = channelBinder;
20 references to _channelBinder
dotnet-svcutil-lib (20)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (20)
33get { return _channelBinder.Channel; } 38get { return _channelBinder.HasSession; } 43get { return _channelBinder.ListenUri; } 48get { return _channelBinder.LocalAddress; } 53get { return _channelBinder.RemoteAddress; } 59_channelBinder.Abort(); 65_channelBinder.CloseAfterFault(timeout); 99IAsyncResult result = _channelBinder.BeginTryReceive(timeout, s_tryReceiveCallback, this); 127return _channelBinder.CreateRequestContext(message); 132_channelBinder.Send(message, timeout); 137return _channelBinder.BeginSend(message, timeout, callback, state); 142_channelBinder.EndSend(result); 147return _channelBinder.Request(message, timeout); 152return _channelBinder.BeginRequest(message, timeout, callback, state); 157return _channelBinder.EndRequest(result); 162return _channelBinder.WaitForMessage(timeout); 167return _channelBinder.BeginWaitForMessage(timeout, callback, state); 172return _channelBinder.EndWaitForMessage(result); 193if (binder._channelBinder.TryReceive(TimeSpan.MaxValue, out requestContext)) 235if (binder._channelBinder.EndTryReceive(result, out requestContext))