Compartir a través de


NetTcpBindingElement.MaxBufferSize Propiedad

Definición

Obtiene o establece un valor que especifica el tamaño máximo, en bytes, del búfer usado para almacenar los mensajes en memoria.

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

Valor de propiedad

Int32

El tamaño máximo (en bytes) del búfer usado para almacenar mensajes en memoria. El valor predeterminado es 65536.

Atributos

Comentarios

Si el búfer está completo, los datos excedentes permanecen en el socket subyacente hasta que el búfer tenga de nuevo espacio.

Este valor no puede ser inferior a MaxReceivedMessageSize , cuyo valor predeterminado también es 65.536 (64 KB).

Se aplica a