IsValidIdentifier() приватный статический Метод

private static IsValidIdentifier ( string identifier ) : bool
identifier string
Результат bool
Пример #1
0
 public DerObjectIdentifier(string identifier)
 {
     if (identifier == null)
     {
         throw new ArgumentNullException("identifier");
     }
     if (!DerObjectIdentifier.IsValidIdentifier(identifier))
     {
         throw new FormatException("string " + identifier + " not an OID");
     }
     this.identifier = identifier;
 }