Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SoapAttributeAttribute.cs
Go to the documentation of this file.
2
4
5[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
7{
8 private string _attributeName;
9
10 private string _ns;
11
12 private string _dataType;
13
14 public string AttributeName
15 {
16 get
17 {
18 if (_attributeName != null)
19 {
20 return _attributeName;
21 }
22 return string.Empty;
23 }
25 set
26 {
28 }
29 }
30
31 public string? Namespace
32 {
33 get
34 {
35 return _ns;
36 }
37 set
38 {
39 _ns = value;
40 }
41 }
42
43 public string DataType
44 {
45 get
46 {
47 if (_dataType != null)
48 {
49 return _dataType;
50 }
51 return string.Empty;
52 }
54 set
55 {
57 }
58 }
59
61 {
62 }
63
68}