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

removeNameSpaces() public method

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

Same methods

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