System.Xml.Schema.XdrValidator.AddID C# (CSharp) Method

AddID() private method

private AddID ( string name, object node ) : void
name string
node object
return void
        internal void AddID(string name, object node) {
            // Note: It used to be true that we only called this if _fValidate was true,
            // but due to the fact that you can now dynamically type somethign as an ID
            // that is no longer true.
            if (IDs == null) {
                IDs = new Hashtable();
            }

            IDs.Add(name, node);
        }