20 references to Buffer
System (20)
net\System\Net\mail\Base64Stream.cs (4)
221Debug.Assert(this.writeState.Buffer != null, "writestate.buffer was null"); 330return ASCIIEncoding.ASCII.GetString(this.WriteState.Buffer, 0, this.WriteState.Length); 361base.Write(WriteState.Buffer, 0, WriteState.Length); 527IAsyncResult result = this.parent.BaseStream.BeginWrite(this.parent.WriteState.Buffer, 0, this.parent.WriteState.Length, onWrite, this);
net\System\Net\mail\EightBitStream.cs (2)
83result = base.BeginWrite(WriteState.Buffer, 0, WriteState.Length, callback, state); 119base.Write(WriteState.Buffer, 0, WriteState.Length);
net\System\Net\mail\QEncodedStream.cs (3)
292return ASCIIEncoding.ASCII.GetString(this.WriteState.Buffer, 0, this.WriteState.Length); 311base.Write(WriteState.Buffer, 0, WriteState.Length); 411IAsyncResult result = this.parent.BaseStream.BeginWrite(this.parent.WriteState.Buffer, 0, this.parent.WriteState.Length, onWrite, this);
net\System\Net\mail\QuotedPrintableStream.cs (8)
253if (WriteState.Buffer.Length - WriteState.Length < sizeOfSoftCRLF) 266if (WriteState.Buffer.Length - WriteState.Length < (encodeCRLF ? sizeOfEncodedCRLF : sizeOfNonEncodedCRLF)) 282if (WriteState.Buffer.Length - WriteState.Length < sizeOfSoftCRLF) 294if (WriteState.Buffer.Length - WriteState.Length < 1) 301if (WriteState.Buffer.Length - WriteState.Length < sizeOfEncodedChar) 326return ASCIIEncoding.ASCII.GetString(this.WriteState.Buffer, 0, this.WriteState.Length); 344base.Write(WriteState.Buffer, 0, WriteState.Length); 443IAsyncResult result = this.parent.BaseStream.BeginWrite(this.parent.WriteState.Buffer, 0, this.parent.WriteState.Length, onWrite, this);
net\System\Net\mail\WriteStateInfoBase.cs (3)
93int newsize = Buffer.Length; 99if (newsize > Buffer.Length) 112this.Buffer[this._currentBufferUsed++] = aByte;