Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
XsltSettings.cs
Go to the documentation of this file.
1namespace System.Xml.Xsl;
2
3public sealed class XsltSettings
4{
6
7 private bool _enableScript;
8
9 private bool _checkOnly;
10
12
13 private int _warningLevel = -1;
14
16
18
20
22 {
23 get
24 {
26 }
27 set
28 {
30 }
31 }
32
33 public bool EnableScript
34 {
35 get
36 {
37 return _enableScript;
38 }
39 set
40 {
42 }
43 }
44
45 internal bool CheckOnly => _checkOnly;
46
48
49 internal int WarningLevel => _warningLevel;
50
52
53 public XsltSettings()
54 {
55 }
56
62}
static XsltSettings Default
static XsltSettings TrustedXslt
XsltSettings(bool enableDocumentFunction, bool enableScript)