Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SmtpCommands.cs
Go to the documentation of this file.
1using System.Text;
2
3namespace System.Net.Mail;
4
5internal static class SmtpCommands
6{
7 internal static readonly byte[] Auth = Encoding.ASCII.GetBytes("AUTH ");
8
9 internal static readonly byte[] CRLF = Encoding.ASCII.GetBytes("\r\n");
10
11 internal static readonly byte[] Data = Encoding.ASCII.GetBytes("DATA\r\n");
12
13 internal static readonly byte[] DataStop = Encoding.ASCII.GetBytes("\r\n.\r\n");
14
15 internal static readonly byte[] EHello = Encoding.ASCII.GetBytes("EHLO ");
16
17 internal static readonly byte[] Expand = Encoding.ASCII.GetBytes("EXPN ");
18
19 internal static readonly byte[] Hello = Encoding.ASCII.GetBytes("HELO ");
20
21 internal static readonly byte[] Help = Encoding.ASCII.GetBytes("HELP");
22
23 internal static readonly byte[] Mail = Encoding.ASCII.GetBytes("MAIL FROM:");
24
25 internal static readonly byte[] Noop = Encoding.ASCII.GetBytes("NOOP\r\n");
26
27 internal static readonly byte[] Quit = Encoding.ASCII.GetBytes("QUIT\r\n");
28
29 internal static readonly byte[] Recipient = Encoding.ASCII.GetBytes("RCPT TO:");
30
31 internal static readonly byte[] Reset = Encoding.ASCII.GetBytes("RSET\r\n");
32
33 internal static readonly byte[] Send = Encoding.ASCII.GetBytes("SEND FROM:");
34
35 internal static readonly byte[] SendAndMail = Encoding.ASCII.GetBytes("SAML FROM:");
36
37 internal static readonly byte[] SendOrMail = Encoding.ASCII.GetBytes("SOML FROM:");
38
39 internal static readonly byte[] Turn = Encoding.ASCII.GetBytes("TURN\r\n");
40
41 internal static readonly byte[] Verify = Encoding.ASCII.GetBytes("VRFY ");
42
43 internal static readonly byte[] StartTls = Encoding.ASCII.GetBytes("STARTTLS");
44}
static readonly byte[] Help
static readonly byte[] Expand
static readonly byte[] Noop
static readonly byte[] SendAndMail
static readonly byte[] Turn
static readonly byte[] EHello
static readonly byte[] CRLF
static readonly byte[] Reset
static readonly byte[] Auth
static readonly byte[] Recipient
static readonly byte[] Send
static readonly byte[] Quit
static readonly byte[] StartTls
static readonly byte[] SendOrMail
static readonly byte[] DataStop
static readonly byte[] Verify
static readonly byte[] Hello
static Encoding ASCII
Definition Encoding.cs:511