Example #1
0
        public static string ForNwdUri(string message)
        {
            string uri = Input(message);

            Parser.Parser p = new Parser.Parser();

            while (!p.ValidateNestedKey(uri))
            {
                string newMsg = "Invalid NWD URI. " +
                    message;

                uri = Input(newMsg);
            }

            return uri;
        }
Example #2
0
 public void TestInitialize()
 {
     p = new Parser();
 }