24 references to BufferBuilder
System (24)
net\System\Net\mail\SmtpCommands.cs (24)
216conn.BufferBuilder.Append(SmtpCommands.Auth); 217conn.BufferBuilder.Append(type); 218conn.BufferBuilder.Append((byte)' '); 219conn.BufferBuilder.Append(message); 220conn.BufferBuilder.Append(SmtpCommands.CRLF); 225conn.BufferBuilder.Append(message); 226conn.BufferBuilder.Append(SmtpCommands.CRLF); 286conn.BufferBuilder.Append(SmtpCommands.Data); 347conn.BufferBuilder.Append(SmtpCommands.DataStop); 399conn.BufferBuilder.Append(SmtpCommands.EHello); 400conn.BufferBuilder.Append(domain); 401conn.BufferBuilder.Append(SmtpCommands.CRLF); 453conn.BufferBuilder.Append(SmtpCommands.Hello); 454conn.BufferBuilder.Append(domain); 455conn.BufferBuilder.Append(SmtpCommands.CRLF); 510conn.BufferBuilder.Append(SmtpCommands.StartTls); 511conn.BufferBuilder.Append(SmtpCommands.CRLF); 567conn.BufferBuilder.Append(command); 569conn.BufferBuilder.Append(fromString, allowUnicode); 572conn.BufferBuilder.Append(" BODY=8BITMIME SMTPUTF8"); 574conn.BufferBuilder.Append(SmtpCommands.CRLF); 639conn.BufferBuilder.Append(SmtpCommands.Recipient); 640conn.BufferBuilder.Append(to, true); // Unicode validation was done prior 641conn.BufferBuilder.Append(SmtpCommands.CRLF);