Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XmlSerializerAssemblyAttribute.cs
Go to the documentation of this file.
2
3[AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Enum | AttributeTargets.Interface, AllowMultiple = false)]
5{
6 private string _assemblyName;
7
8 private string _codeBase;
9
10 public string? CodeBase
11 {
12 get
13 {
14 return _codeBase;
15 }
16 set
17 {
19 }
20 }
21
22 public string? AssemblyName
23 {
24 get
25 {
26 return _assemblyName;
27 }
28 set
29 {
31 }
32 }
33
35 : this(null, null)
36 {
37 }
38
43
49}