Esempio n. 1
0
 internal override void Verify(string location, StringCollection errors)
 {
     if (nodeName == null || nodeName.Length == 0)
     {
         errors.Add(location + "Node: NodeName can't be empty.");
     }
     ChildNodes.Verify(location + NodeName + "/", errors);
 }