Rolcore.Net.WebMethods.WebMethodsHtmlResponseObject.Contains C# (CSharp) Méthode

Contains() public méthode

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.
Résultat 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);
        }