다음을 통해 공유


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(64KB)입니다.

적용 대상