Beispiel #1
0
    public static HttpHelperHandle StartDownLoadWithMD5(string url, string path, string md5)
    {
        HttpHelperHandle handle = new HttpHelperHandle();

        handle.url      = url;
        handle.isFinish = false;
        CoroutineUtil.RunCoroutine(HttpDownloadFileWithMD5(url, path, handle, md5));
        return(handle);
    }
Beispiel #2
0
    public static HttpHelperHandle StartGetText(string url)
    {
        HttpHelperHandle handle = new HttpHelperHandle();

        handle.url      = url;
        handle.isFinish = false;
        CoroutineUtil.RunCoroutine(GetText(url, handle));
        return(handle);
    }