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

◆ IsOpen

bool System.Xml.Schema.ContentValidator.IsOpen
getsetinherited

Definition at line 37 of file ContentValidator.cs.

38 {
39 get
40 {
41 if (_contentType == XmlSchemaContentType.TextOnly || _contentType == XmlSchemaContentType.Empty)
42 {
43 return false;
44 }
45 return _isOpen;
46 }
47 set
48 {
49 _isOpen = value;
50 }
51 }
readonly XmlSchemaContentType _contentType