1 write to bufferBuilder
System (1)
net\System\Net\mail\BaseWriter.cs (1)
39this.bufferBuilder = new BufferBuilder();
24 references to bufferBuilder
System (24)
net\System\Net\mail\BaseWriter.cs (14)
59this.bufferBuilder.Append(name); 60this.bufferBuilder.Append(": "); 62this.bufferBuilder.Append(CRLF); 74this.bufferBuilder.Append(value, startOfLine, index - startOfLine, allowUnicode); 84this.bufferBuilder.Append(value, startOfLine, lastSpace - startOfLine, allowUnicode); 85this.bufferBuilder.Append(CRLF); 98this.bufferBuilder.Append(value, startOfLine, value.Length - startOfLine, allowUnicode); 120this.bufferBuilder.Append(CRLF); 159if (this.bufferBuilder.Length > 0) 164IAsyncResult result = this.stream.BeginWrite(this.bufferBuilder.GetBuffer(), 0, 165this.bufferBuilder.Length, onWrite, multiResult); 174this.stream.Write(this.bufferBuilder.GetBuffer(), 0, this.bufferBuilder.Length); 176this.bufferBuilder.Reset();
net\System\Net\mail\MailWriter.cs (1)
45this.bufferBuilder.Append(CRLF);
net\System\Net\mail\MimeWriter.cs (9)
72this.bufferBuilder.Append(CRLF); 73this.bufferBuilder.Append(DASHDASH); 74this.bufferBuilder.Append(this.boundaryBytes); 75this.bufferBuilder.Append(DASHDASH); 76this.bufferBuilder.Append(CRLF); 107this.bufferBuilder.Append(CRLF); 108this.bufferBuilder.Append(DASHDASH); 109this.bufferBuilder.Append(this.boundaryBytes); 110this.bufferBuilder.Append(CRLF);