Exemple #1
0
 public Boolean Initialise()
 {
     if (!ResponsePath.EndsWith("\\"))
     {
         ResponsePath += "\\";
     }
     return(true);
 }
Exemple #2
0
        public Boolean Initialise()
        {
            String SampleData;

            if (!InputPath.EndsWith("\\"))
            {
                InputPath += "\\";
            }
            SampleData = InputPath + "wqu.json";

            if (!ResponsePath.EndsWith("\\"))
            {
                ResponsePath += "\\";
            }

            return(true);
        }
Exemple #3
0
        public Boolean Initialise()
        {
            String SampleData;

            if (!InputPath.EndsWith("\\"))
            {
                InputPath += "\\";
            }
            SampleData = InputPath + "Getdata.json";

            if (!ResponsePath.EndsWith("\\"))
            {
                ResponsePath += "\\";
            }

            objReq = objJSON.ParseFile(SampleData);
            if (objReq == null)
            {
                return(false);
            }

            return(true);
        }