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

◆ ApplicationId()

System.ApplicationId.ApplicationId ( byte[] publicKeyToken,
string name,
Version version,
string? processorArchitecture,
string? culture )
inline

Definition at line 20 of file ApplicationId.cs.

21 {
22 if (name == null)
23 {
24 throw new ArgumentNullException("name");
25 }
26 if (name.Length == 0)
27 {
28 throw new ArgumentException(SR.Argument_EmptyApplicationName);
29 }
30 if (version == null)
31 {
32 throw new ArgumentNullException("version");
33 }
34 if (publicKeyToken == null)
35 {
36 throw new ArgumentNullException("publicKeyToken");
37 }
38 _publicKeyToken = (byte[])publicKeyToken.Clone();
39 Name = name;
40 Version = version;
41 ProcessorArchitecture = processorArchitecture;
43 }
readonly byte[] _publicKeyToken

References System.ApplicationId._publicKeyToken, System.SR.Argument_EmptyApplicationName, System.culture, System.ApplicationId.Culture, System.ApplicationId.Name, and System.ApplicationId.ProcessorArchitecture.

Referenced by System.ApplicationId.Copy().