Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ PrepareCommand() [2/2]

static void System.Net.Mail.AuthCommand.PrepareCommand ( SmtpConnection conn,
string type,
string message )
inlinestaticprivate

Definition at line 31 of file AuthCommand.cs.

32 {
33 conn.BufferBuilder.Append(SmtpCommands.Auth);
34 conn.BufferBuilder.Append(type);
35 conn.BufferBuilder.Append(32);
36 conn.BufferBuilder.Append(message);
37 conn.BufferBuilder.Append(SmtpCommands.CRLF);
38 }

References System.Net.Mail.BufferBuilder.Append(), System.Net.Mail.SmtpCommands.Auth, System.Net.Mail.SmtpConnection.BufferBuilder, System.Net.Mail.SmtpCommands.CRLF, and System.type.

Referenced by System.Net.Mail.AuthCommand.BeginSend(), System.Net.Mail.AuthCommand.BeginSend(), System.Net.Mail.AuthCommand.Send(), and System.Net.Mail.AuthCommand.Send().