16 writes to MaxBufferPoolSize
System.ServiceModel (12)
System\ServiceModel\Channels\PeerService.cs (1)
114transport.MaxBufferPoolSize = this.config.MaxBufferPoolSize;
System\ServiceModel\Configuration\PeerTransportElement.cs (1)
69binding.MaxBufferPoolSize = this.MaxBufferPoolSize;
System\ServiceModel\Configuration\TransportElement.cs (1)
21binding.MaxBufferPoolSize = this.MaxBufferPoolSize;
System\ServiceModel\HttpBindingBase.cs (2)
108this.httpTransport.MaxBufferPoolSize = value; 109this.httpsTransport.MaxBufferPoolSize = value;
System\ServiceModel\NetMsmqBinding.cs (1)
88transport.MaxBufferPoolSize = value;
System\ServiceModel\NetNamedPipeBinding.cs (1)
87namedPipe.MaxBufferPoolSize = value;
System\ServiceModel\NetPeerTcpBinding.cs (1)
43transport.MaxBufferPoolSize = value;
System\ServiceModel\NetTcpBinding.cs (1)
83transport.MaxBufferPoolSize = value;
System\ServiceModel\WSDualHttpBinding.cs (1)
102httpTransport.MaxBufferPoolSize = value;
System\ServiceModel\WSHttpBindingBase.cs (2)
81httpTransport.MaxBufferPoolSize = value; 82httpsTransport.MaxBufferPoolSize = value;
System.ServiceModel.Channels (1)
System\ServiceModel\UdpBinding.cs (1)
83this.udpTransport.MaxBufferPoolSize = value;
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\UdpTransportSettings.cs (1)
115this.UdpTransportBindingElement.MaxBufferPoolSize = value;
System.ServiceModel.Web (2)
System\ServiceModel\WebHttpBinding.cs (2)
83httpTransportBindingElement.MaxBufferPoolSize = value; 84httpsTransportBindingElement.MaxBufferPoolSize = value;
26 references to MaxBufferPoolSize
System.ServiceModel (20)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
154instance.SetProperty(AdministrationStrings.MaxBufferPoolSize, transport.MaxBufferPoolSize);
System\ServiceModel\Channels\TransportBindingElement.cs (1)
214if (this.maxBufferPoolSize != transport.MaxBufferPoolSize)
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
35this.maxBufferPoolSize = bindingElement.MaxBufferPoolSize;
System\ServiceModel\Channels\TransportChannelListener.cs (1)
69this.maxBufferPoolSize = bindingElement.MaxBufferPoolSize;
System\ServiceModel\Configuration\PeerTransportElement.cs (1)
101SetPropertyValueIfNotDefaultValue(ConfigurationStrings.MaxBufferPoolSize, binding.MaxBufferPoolSize);
System\ServiceModel\Configuration\TransportElement.cs (1)
50SetPropertyValueIfNotDefaultValue(ConfigurationStrings.MaxBufferPoolSize, binding.MaxBufferPoolSize);
System\ServiceModel\HttpBindingBase.cs (2)
103return this.httpTransport.MaxBufferPoolSize; 338this.MaxBufferPoolSize = transport.MaxBufferPoolSize;
System\ServiceModel\NetMsmqBinding.cs (2)
85get { return transport.MaxBufferPoolSize; } 190this.MaxBufferPoolSize = transport.MaxBufferPoolSize;
System\ServiceModel\NetNamedPipeBinding.cs (2)
84get { return namedPipe.MaxBufferPoolSize; } 170this.MaxBufferPoolSize = namedPipe.MaxBufferPoolSize;
System\ServiceModel\NetPeerTcpBinding.cs (2)
40get { return transport.MaxBufferPoolSize; } 122this.MaxBufferPoolSize = transport.MaxBufferPoolSize;
System\ServiceModel\NetTcpBinding.cs (2)
80get { return transport.MaxBufferPoolSize; } 207this.MaxBufferPoolSize = transport.MaxBufferPoolSize;
System\ServiceModel\WSDualHttpBinding.cs (2)
99get { return httpTransport.MaxBufferPoolSize; } 239this.MaxBufferPoolSize = transport.MaxBufferPoolSize;
System\ServiceModel\WSHttpBindingBase.cs (2)
78get { return httpTransport.MaxBufferPoolSize; } 228this.MaxBufferPoolSize = transport.MaxBufferPoolSize;
System.ServiceModel.Channels (4)
System\ServiceModel\Channels\UdpChannelFactory.cs (1)
46this.BufferManager = BufferManager.CreateBufferManager(transportBindingElement.MaxBufferPoolSize, maxBufferSize);
System\ServiceModel\Channels\UdpChannelListener.cs (1)
65this.bufferManager = BufferManager.CreateBufferManager(udpTransportBindingElement.MaxBufferPoolSize, maxBufferSize);
System\ServiceModel\UdpBinding.cs (2)
50this.MaxBufferPoolSize = transport.MaxBufferPoolSize; 79return this.udpTransport.MaxBufferPoolSize;
System.ServiceModel.Discovery (1)
System\ServiceModel\Discovery\UdpTransportSettings.cs (1)
111return this.UdpTransportBindingElement.MaxBufferPoolSize;
System.ServiceModel.Web (1)
System\ServiceModel\WebHttpBinding.cs (1)
80get { return httpTransportBindingElement.MaxBufferPoolSize; }