12345678910111213141516171819202122232425262728293031323334353637 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace BestHTTP.Forms
- {
- public enum HTTPFormUsage
- {
-
-
-
- Automatic,
-
-
-
- UrlEncoded,
-
-
-
- Multipart,
-
-
-
- RawJSon,
- #if !BESTHTTP_DISABLE_UNITY_FORM
-
-
-
- Unity
- #endif
- }
- }
|