2 writes to buffer
System (2)
net\System\Net\mail\BufferBuilder.cs (2)
23
this.
buffer
= new byte[initialSize];
32
this.
buffer
= newBuffer;
10 references to buffer
System (10)
net\System\Net\mail\BufferBuilder.cs (10)
28
if (count > this.
buffer
.Length - this.offset)
30
byte[] newBuffer = new byte[((
buffer
.Length * 2)>(
buffer
.Length + count))?(
buffer
.Length*2):(
buffer
.Length + count)];
31
Buffer.BlockCopy(this.
buffer
, 0, newBuffer, 0, this.offset);
39
this.
buffer
[this.offset++] = value;
50
Buffer.BlockCopy(value, offset, this.
buffer
, this.offset, count);
90
this.
buffer
[this.offset + i] = (byte)c;
105
return this.
buffer
;