2 writes to blockSize
System.Runtime.Serialization (2)
System\Xml\XmlDictionaryWriter.cs (2)
543this.blockSize = 256; 559this.blockSize = this.blockSize * 16;
6 references to blockSize
System.Runtime.Serialization (6)
System\Xml\XmlDictionaryWriter.cs (6)
545this.block = new byte[blockSize]; // 557if (this.blockSize < 65536 && this.bytesRead == this.blockSize) 559this.blockSize = this.blockSize * 16; 560this.block = new byte[this.blockSize]; 626result = this.stream.BeginRead(this.block, 0, blockSize, onContinueWork, this);