NetTcpBindingElement.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

属性值

Int32

内存中用于存储消息的缓冲区的最大大小(以字节为单位)。 默认值为 65536。

属性

注解

如果缓冲区已满,则多余的数据会保留在基础套接字中,直到缓冲区重新具有可用空间。

此值不能小于 MaxReceivedMessageSize(其默认值也是 65,536 (64 KB))。

适用于