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

◆ Standalone

string System.Xml.XmlDeclaration.Standalone
getset

Definition at line 41 of file XmlDeclaration.cs.

42 {
43 get
44 {
45 return _standalone;
46 }
47 [MemberNotNull("_standalone")]
49 set
50 {
51 if (value == null)
52 {
53 _standalone = string.Empty;
54 return;
55 }
56 if (value.Length == 0 || value == "yes" || value == "no")
57 {
59 return;
60 }
62 }
63 }
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string Xdom_standalone
Definition SR.cs:1290
Definition SR.cs:7

Referenced by System.Xml.XmlDeclaration.XmlDeclaration(), and System.Xml.XmlDeclaration.CloneNode().