NetTcpBindingElement.MaxBufferSize 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
메모리에 메시지를 저장할 때 사용되는 버퍼의 최대 크기(바이트)를 지정하는 값을 가져오거나 설정합니다.
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
속성 값
메모리에 메시지를 저장할 때 사용되는 버퍼의 최대 크기(바이트)입니다. 기본값은 65536입니다.
- 특성
설명
버퍼가 꽉 차면 초과 데이터는 버퍼에 공간이 생길 때까지 내부 소켓에 남아 있습니다.
이 값은 MaxReceivedMessageSize보다 작을 수 없으며, 이 기본값 역시 65,536(64KB)입니다.