Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros

◆ NTAccount() [2/2]

System.Security.Principal.NTAccount.NTAccount ( string name)
inline

Definition at line 42 of file NTAccount.cs.

43 {
44 if (name == null)
45 {
46 throw new ArgumentNullException("name");
47 }
48 if (name.Length == 0)
49 {
51 }
52 if (name.Length > 512)
53 {
55 }
56 _name = name;
57 }
static string IdentityReference_AccountNameTooLong
Definition SR.cs:34
static string Argument_StringZeroLength
Definition SR.cs:882
Definition SR.cs:7

References System.Security.Principal.NTAccount._name, System.SR.Argument_StringZeroLength, and System.SR.IdentityReference_AccountNameTooLong.