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