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