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