DataDictionary.Generated.Dictionary.removeNameSpaceRefs C# (CSharp) Method

removeNameSpaceRefs() public method

Part of the list interface for NameSpaceRefs This deletion function removes an element from the collection in NameSpaceRefs If the object given in parameter is not found in the the collection, this function does nothing.
public removeNameSpaceRefs ( IXmlBBase obj ) : void
obj IXmlBBase the object to remove
return void
        public void removeNameSpaceRefs(IXmlBBase obj)
        {
            int idx = indexOfNameSpaceRefs(obj);
              if (idx >= 0) { deleteNameSpaceRefs(idx);
            NotifyControllers(null);
               }
        }

Same methods

Dictionary::removeNameSpaceRefs ( IXmlBBase obj, Lock aLock ) : void