Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
NamespaceListV1Compat.cs
Go to the documentation of this file.
1namespace System.Xml.Schema;
2
3internal sealed class NamespaceListV1Compat : NamespaceList
4{
9
10 public override bool Allows(string ns)
11 {
12 if (base.Type == ListType.Other)
13 {
14 return ns != base.Excluded;
15 }
16 return base.Allows(ns);
17 }
18}
NamespaceListV1Compat(string namespaces, string targetNamespace)