System.Xml.Schema.NamespaceListV1Compat.Allows C# (CSharp) Method

Allows() public method

public Allows ( string ns ) : bool
ns string
return bool
        public override bool Allows(string ns) {
            if (this.Type == ListType.Other) {
                return ns != Excluded;
            }
            else {
                return base.Allows(ns);
            }
        }
    }
NamespaceListV1Compat