3 implementations of AsyncReadBufferSize
dotnet-svcutil-lib (3)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (2)
56
public virtual int
AsyncReadBufferSize
487
public int
AsyncReadBufferSize
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SocketConnection.cs (1)
56
public int
AsyncReadBufferSize
7 references to AsyncReadBufferSize
dotnet-svcutil-lib (7)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\Connection.cs (4)
58
get { return _connection.
AsyncReadBufferSize
; }
381
AsyncCompletionResult asyncCompletionResult = _connection.BeginRead(0, Math.Min(count, _connection.
AsyncReadBufferSize
),
478
_asyncReadBuffer = Fx.AllocateByteArray(_innerStream.Connection.
AsyncReadBufferSize
);
489
get { return _innerStream.Connection.
AsyncReadBufferSize
; }
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\FramingChannels.cs (2)
453
Math.Min(FaultStringDecoder.FaultSizeQuota, connection.
AsyncReadBufferSize
),
479
Math.Min(FaultStringDecoder.FaultSizeQuota, connection.
AsyncReadBufferSize
),
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SessionConnectionReader.cs (1)
199
_buffer = Fx.AllocateByteArray(_connection.
AsyncReadBufferSize
);