Beispiel #1
0
 public static bool IsPubid(string str)
 {
     for (int i = 0; i < str.Length; i++)
     {
         if (!XmlChar.IsPubidChar((int)str[i]))
         {
             return(false);
         }
     }
     return(true);
 }
Beispiel #2
0
 public static bool IsPublicIdChar(char ch)
 {
     return(XmlChar.IsPubidChar(ch));
 }