Rolcore.Net.WebMethods.WebMethodsHtmlResponseObject.Contains C# (CSharp) Method

Contains() public method

Determines if the given object name exists within the hierarchy.
public Contains ( string objectName ) : bool
objectName string The name (using instance.SubObjectName syntax) of the object to test for.
return bool
        public bool Contains(string objectName)
        {
            if (string.IsNullOrEmpty(objectName))
                throw new ArgumentException("objectName is null or empty.", "objectName");

            return (FindObjectNameNode(objectName, this._Xml) != null);
        }