System.Xml.Schema.SymbolsDictionary.Exists C# (CSharp) Méthode

Exists() public méthode

Check if a name exists in the symbol dictionary
public Exists ( XmlQualifiedName name ) : bool
name XmlQualifiedName
Résultat bool
        public bool Exists(XmlQualifiedName name) {

            object lookup = names[name];
            if (lookup != null) {
                return true;
            }
            return false;
        }