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

◆ NewLineHandling

NewLineHandling System.Xml.XmlWriterSettings.NewLineHandling
getset

Definition at line 102 of file XmlWriterSettings.cs.

103 {
104 get
105 {
106 return _newLineHandling;
107 }
108 set
109 {
110 CheckReadOnly("NewLineHandling");
111 if ((uint)value > 2u)
112 {
113 throw new ArgumentOutOfRangeException("value");
114 }
116 }
117 }
void CheckReadOnly(string propertyName)

Referenced by System.Xml.XmlEncodedRawTextWriter.XmlEncodedRawTextWriter(), System.Xml.XmlUtf8RawTextWriter.XmlUtf8RawTextWriter(), System.Xml.XmlWriterSettings.XmlWriterSettings(), and System.Xml.XmlWriterSettings.AddConformanceWrapper().