3 writes to buffer
System.ServiceModel (3)
System\ServiceModel\Channels\SessionConnectionReader.cs (3)
1130this.buffer = connection.AsyncReadBuffer; 1239buffer = connection.AsyncReadBuffer; 1317buffer = DiagnosticUtility.Utility.AllocateByteArray(connection.AsyncReadBufferSize);
10 references to buffer
System.ServiceModel (10)
System\ServiceModel\Channels\SessionConnectionReader.cs (10)
1148return DecodeMessage(buffer, ref offset, ref size, ref isAtEOF, timeout); 1190preReadConnection.AddPreReadData(this.buffer, this.offset, this.size); 1194result = new PreReadConnection(result, this.buffer, this.offset, this.size); 1251connection.BeginRead(0, buffer.Length, readTimeoutHelper.RemainingTime(), onAsyncReadComplete, null); 1315if (buffer == null) 1323(EnvelopeSize - EnvelopeOffset) >= buffer.Length) 1325bytesRead = connection.Read(EnvelopeBuffer, EnvelopeOffset, buffer.Length, timeoutHelper.RemainingTime()); 1330bytesRead = connection.Read(buffer, 0, buffer.Length, timeoutHelper.RemainingTime()); 1461if (connection.BeginRead(0, buffer.Length, this.readTimeoutHelper.RemainingTime(),