6 writes to MaxBufferSize
System.ServiceModel (3)
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
191binding.MaxBufferSize = this.MaxBufferSize;
System\ServiceModel\HttpBindingBase.cs (2)
92this.httpTransport.MaxBufferSize = value; 93this.httpsTransport.MaxBufferSize = value;
System.ServiceModel.Web (3)
System\ServiceModel\Description\WebScriptEnablingBehavior.cs (1)
291transportBindingElement.MaxBufferSize = MaxMetadataEndpointBufferSize;
System\ServiceModel\WebHttpBinding.cs (2)
94httpTransportBindingElement.MaxBufferSize = value; 95httpsTransportBindingElement.MaxBufferSize = value;
12 references to MaxBufferSize
System.ServiceModel (11)
System\ServiceModel\Administration\EndpointInstanceProvider.cs (1)
208instance.SetProperty(AdministrationStrings.MaxBufferSize, http.MaxBufferSize);
System\ServiceModel\Channels\HttpChannelFactory.cs (3)
84if (bindingElement.MaxBufferSize != bindingElement.MaxReceivedMessageSize) 92if (bindingElement.MaxBufferSize > bindingElement.MaxReceivedMessageSize) 137this.maxBufferSize = bindingElement.MaxBufferSize;
System\ServiceModel\Channels\HttpChannelListener.cs (3)
77if (bindingElement.MaxBufferSize != bindingElement.MaxReceivedMessageSize) 85if (bindingElement.MaxBufferSize > bindingElement.MaxReceivedMessageSize) 103this.maxBufferSize = bindingElement.MaxBufferSize;
System\ServiceModel\Configuration\HttpTransportElement.cs (1)
250SetPropertyValueIfNotDefaultValue(ConfigurationStrings.MaxBufferSize, source.MaxBufferSize);
System\ServiceModel\HttpBindingBase.cs (2)
87return this.httpTransport.MaxBufferSize; 339this.MaxBufferSize = transport.MaxBufferSize;
System\ServiceModel\Security\SecurityUtils.cs (1)
2245maxNegoMessageSize = ((HttpTransportBindingElement)transport).MaxBufferSize;
System.ServiceModel.Web (1)
System\ServiceModel\WebHttpBinding.cs (1)
91get { return httpTransportBindingElement.MaxBufferSize; }