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