public Boolean Initialise() { if (!ResponsePath.EndsWith("\\")) { ResponsePath += "\\"; } return(true); }
public Boolean Initialise() { String SampleData; if (!InputPath.EndsWith("\\")) { InputPath += "\\"; } SampleData = InputPath + "wqu.json"; if (!ResponsePath.EndsWith("\\")) { ResponsePath += "\\"; } return(true); }
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); }