├── .gitignore ├── AssemblyInfo.cs ├── LICENSE.md ├── README.md ├── UnityHTTP.csproj ├── UnityHTTP.nuspec ├── lib ├── Ionic.Zlib.CF.dll └── JSON.cs └── src ├── CookieJar.cs ├── DiskCache.cs ├── FormDataStream.cs ├── Logger.cs ├── Request.cs ├── Response.cs ├── ResponseCallbackDispatcher.cs └── StreamedWWWForm.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/.gitignore -------------------------------------------------------------------------------- /AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/AssemblyInfo.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/README.md -------------------------------------------------------------------------------- /UnityHTTP.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/UnityHTTP.csproj -------------------------------------------------------------------------------- /UnityHTTP.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/UnityHTTP.nuspec -------------------------------------------------------------------------------- /lib/Ionic.Zlib.CF.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/lib/Ionic.Zlib.CF.dll -------------------------------------------------------------------------------- /lib/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/lib/JSON.cs -------------------------------------------------------------------------------- /src/CookieJar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/src/CookieJar.cs -------------------------------------------------------------------------------- /src/DiskCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/src/DiskCache.cs -------------------------------------------------------------------------------- /src/FormDataStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/src/FormDataStream.cs -------------------------------------------------------------------------------- /src/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/src/Logger.cs -------------------------------------------------------------------------------- /src/Request.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/src/Request.cs -------------------------------------------------------------------------------- /src/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/src/Response.cs -------------------------------------------------------------------------------- /src/ResponseCallbackDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/src/ResponseCallbackDispatcher.cs -------------------------------------------------------------------------------- /src/StreamedWWWForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyburke/UnityHTTP/HEAD/src/StreamedWWWForm.cs --------------------------------------------------------------------------------