getHttpData() public static method

public static getHttpData ( string url ) : ArrayList
url string
return System.Collections.ArrayList
Esempio n. 1
0
 public void loadHttpRoot(string url)
 {
     webList.Clear();
     webList = Util.getHttpData(url);
 }
Esempio n. 2
0
 //
 // if cached is false, real time load but cached file load
 //
 public void loadHttp(string url, bool cached)
 {
     setDictionary(Util.getHttpData(url));
 }