ConnectionOrientedTransportElement.MaxBufferSize 属性

定义

获取或设置要使用的缓冲区的最大大小。

public:
 property int MaxBufferSize { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("maxBufferSize", DefaultValue=65536)]
[System.Configuration.IntegerValidator(MinValue=1)]
public int MaxBufferSize { get; set; }
[<System.Configuration.ConfigurationProperty("maxBufferSize", DefaultValue=65536)>]
[<System.Configuration.IntegerValidator(MinValue=1)>]
member this.MaxBufferSize : int with get, set
Public Property MaxBufferSize As Integer

属性值

内存中用于对传入消息进行缓冲的最大字节数。 默认值为 65,536 字节。

属性

注解

此属性仅适用于经过流处理的消息的标头。

此值最少应为以缓冲模式读取的 SOAP 标头的最大可能大小。

此属性的值必须小于或等于 MaxMessageSize,且必须大于消息头的大小。 否则,通道将引发异常。

如果接收的数据量大于可缓冲的数据量,则通道会引发 CommunicationException,该异常包含 QuotaExceededException 作为内部异常。

适用于