3 writes to size
SMSvcHost (3)
System\ServiceModel\Activation\DupHandleConnectionReader.cs (3)
33this.size = size; 85size -= bytesDecoded; 120size = Connection.EndRead();
10 references to size
SMSvcHost (10)
System\ServiceModel\Activation\DupHandleConnectionReader.cs (10)
65if (size == 0) 78Fx.Assert(size > 0, ""); 81int bytesDecoded = Decode(connectionBuffer, offset, size); 98if (size == 0) 121if (size == 0) 128byte[] newDataRead = new byte[dataRead.Length + size]; 130Buffer.BlockCopy(connectionBuffer, 0, newDataRead, this.dataRead.Length, size); 160this.dataRead = new byte[accruedData.Length + offset + size]; 166this.dataRead = new byte[offset + size]; 170Buffer.BlockCopy(this.connectionBuffer, 0, dataRead, accruedDataOffset, offset + size);