Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SoapTypeAttribute.cs
Go to the documentation of this file.
2
4
7{
8 private string _ns;
9
10 private string _typeName;
11
12 private bool _includeInSchema = true;
13
14 public bool IncludeInSchema
15 {
16 get
17 {
18 return _includeInSchema;
19 }
20 set
21 {
23 }
24 }
25
26 public string TypeName
27 {
28 get
29 {
30 if (_typeName != null)
31 {
32 return _typeName;
33 }
34 return string.Empty;
35 }
37 set
38 {
40 }
41 }
42
43 public string? Namespace
44 {
45 get
46 {
47 return _ns;
48 }
49 set
50 {
51 _ns = value;
52 }
53 }
54
56 {
57 }
58
59 public SoapTypeAttribute(string? typeName)
60 {
61 _typeName = typeName;
62 }
63
64 public SoapTypeAttribute(string? typeName, string? ns)
65 {
66 _typeName = typeName;
67 _ns = ns;
68 }
69}
SoapTypeAttribute(string? typeName, string? ns)