File Download DownloadTo

JumpKick.HttpLib — File Download DownloadTo Description Use .DownloadTo(savePath, …) to directly download and save network resources to local disk, usually used with Http.Get().Callback parameters: Examples With progress and completion callback …

File Upload

JumpKick.HttpLib — File Upload Overview File upload is implemented with Http.Post() + .Upload(), using the multipart/form‑data format for local file uploads;Core class: NamedFileStream(form‑field name, file name, MIME type, file stream) …

POST Requests

JumpKick.HttpLib — POST Requests 1. Overview of Available Request Methods (Http Static Class) Unified fluent structure: RequestMethod().ParameterConfig().OnSuccess().OnFail().Go(); 2. Two Parameter‑Passing Modes for POST 3. Example 1: Form Submission 4. Example …

GET Requests

JumpKick.HttpLib — GET Requests 1. Basic Syntax 1: Minimal Working Request (no exception handling) Without OnFail, any network error will crash your program with a popup error dialog 2: Success …

Overview

Brief Introduction to HttpLib (C# .NET Framework) 1. Library Overview HttpLib (by James Thorne) is a .NET HTTP request helper library released under the Apache 2.0 License. It simplifies asynchronous …