2 writes to blockSize
System.Runtime.Serialization (2)
System\Xml\XmlDictionaryWriter.cs (2)
293this.blockSize = 256; 458this.blockSize = this.blockSize * 16;
6 references to blockSize
System.Runtime.Serialization (6)
System\Xml\XmlDictionaryWriter.cs (6)
295this.block = new byte[this.blockSize]; 368IAsyncResult result = this.stream.BeginRead(this.block, 0, blockSize, onReadComplete, this); 456if (this.blockSize < 65536 && this.bytesRead == this.blockSize) 458this.blockSize = this.blockSize * 16; 459this.block = new byte[this.blockSize];