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