4 implementations of AsyncReadBufferSize
System.ServiceModel (4)
System\ServiceModel\Channels\Connection.cs (2)
74public virtual int AsyncReadBufferSize 591public int AsyncReadBufferSize
System\ServiceModel\Channels\PipeConnection.cs (1)
106public int AsyncReadBufferSize
System\ServiceModel\Channels\SocketConnection.cs (1)
118public int AsyncReadBufferSize
9 references to AsyncReadBufferSize
System.ServiceModel (9)
System\ServiceModel\Channels\Connection.cs (4)
76get { return connection.AsyncReadBufferSize; } 500AsyncCompletionResult readResult = connection.BeginRead(0, Math.Min(count, connection.AsyncReadBufferSize), 582this.asyncReadBuffer = DiagnosticUtility.Utility.AllocateByteArray(innerStream.Connection.AsyncReadBufferSize); 593get { return innerStream.Connection.AsyncReadBufferSize; }
System\ServiceModel\Channels\ConnectionModeReader.cs (1)
73if (Connection.BeginRead(0, Connection.AsyncReadBufferSize, GetRemainingTimeout(),
System\ServiceModel\Channels\FramingChannels.cs (2)
1111if (connection.BeginRead(0, Math.Min(FaultStringDecoder.FaultSizeQuota, connection.AsyncReadBufferSize), 1146if (connection.BeginRead(0, Math.Min(FaultStringDecoder.FaultSizeQuota, connection.AsyncReadBufferSize),
System\ServiceModel\Channels\SessionConnectionReader.cs (1)
1317buffer = DiagnosticUtility.Utility.AllocateByteArray(connection.AsyncReadBufferSize);
System\ServiceModel\Channels\SingletonConnectionReader.cs (1)
1190byte[] buffer = DiagnosticUtility.Utility.AllocateByteArray(connection.AsyncReadBufferSize);