Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SmtpAuthenticationManager.cs
Go to the documentation of this file.
2
3namespace System.Net.Mail;
4
5internal static class SmtpAuthenticationManager
6{
8
16
18 {
19 if (module == null)
20 {
21 throw new ArgumentNullException("module");
22 }
24 {
25 s_modules.Add(module);
26 }
27 }
28
30 {
32 {
34 s_modules.CopyTo(0, array, 0, s_modules.Count);
35 return array;
36 }
37 }
38}
static void Register(ISmtpAuthenticationModule module)
static readonly List< ISmtpAuthenticationModule > s_modules
static ISmtpAuthenticationModule[] GetModules()