using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace BestHTTP.Forms { public enum HTTPFormUsage { /// /// The plugin will try to choose the best form sending method. /// Automatic, /// /// The plugin will use the Url-Encoded form sending. /// UrlEncoded, /// /// The plugin will use the Multipart form sending. /// Multipart, /// /// Using this type of form, the plugin will send the data converted to a JSon string. /// RawJSon, #if !BESTHTTP_DISABLE_UNITY_FORM /// /// The legacy, Unity-based form sending. /// Unity #endif } }