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
}
}