up
This commit is contained in:
32
Assets/BestHTTP/Forms/HTTPFormUsage.cs
Normal file
32
Assets/BestHTTP/Forms/HTTPFormUsage.cs
Normal file
@@ -0,0 +1,32 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
|
||||
namespace BestHTTP.Forms
|
||||
{
|
||||
public enum HTTPFormUsage
|
||||
{
|
||||
/// <summary>
|
||||
/// The plugin will try to choose the best form sending method.
|
||||
/// </summary>
|
||||
Automatic,
|
||||
|
||||
/// <summary>
|
||||
/// The plugin will use the Url-Encoded form sending.
|
||||
/// </summary>
|
||||
UrlEncoded,
|
||||
|
||||
/// <summary>
|
||||
/// The plugin will use the Multipart form sending.
|
||||
/// </summary>
|
||||
Multipart,
|
||||
|
||||
#if !BESTHTTP_DISABLE_UNITY_FORM
|
||||
/// <summary>
|
||||
/// The legacy, Unity-based form sending.
|
||||
/// </summary>
|
||||
Unity
|
||||
#endif
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user