System.Xml.Schema.SymbolsDictionary.this C# (CSharp) Method

this() public method

Find the symbol for the given name. If neither names nor wilcards match it last (*.*) symbol will be returned
public this ( XmlQualifiedName name ) : int
name XmlQualifiedName
return int
        public int this[XmlQualifiedName name] {
            get {
                object lookup = names[name];
                if (lookup != null) {
                    return (int)lookup;
                }
                if (wildcards != null) {
                    lookup = wildcards[name.Namespace];
                    if (lookup != null) {
                        return (int)lookup;
                    }   
                }
                return last; // true wildcard
            }
        }