System.Xml.Schema.NamespaceListV1Compat.Allows C# (CSharp) 메소드

Allows() 공개 메소드

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