3 writes to dataRead
SMSvcHost (3)
System\ServiceModel\Activation\DupHandleConnectionReader.cs (3)
131dataRead = newDataRead; 160this.dataRead = new byte[accruedData.Length + offset + size]; 166this.dataRead = new byte[offset + size];
7 references to dataRead
SMSvcHost (7)
System\ServiceModel\Activation\DupHandleConnectionReader.cs (7)
92this.Connection, this.dataRead, via, this.GetConnectionDequeuedCallback()); 128byte[] newDataRead = new byte[dataRead.Length + size]; 129Buffer.BlockCopy(dataRead, 0, newDataRead, 0, dataRead.Length); 130Buffer.BlockCopy(connectionBuffer, 0, newDataRead, this.dataRead.Length, size); 161Buffer.BlockCopy(accruedData, 0, this.dataRead, 0, accruedData.Length); 170Buffer.BlockCopy(this.connectionBuffer, 0, dataRead, accruedDataOffset, offset + size);