namespace RestEase
{
///
/// Type of serialization that should be applied to the body
///
public enum BodySerializationMethod
{
///
/// Serialized using the configured IRequestBodySerializer (uses Json.NET by default)
///
Serialized,
///
/// Serialized using Form URL Encoding. The body must implement IDictionary
///
UrlEncoded,
///
/// Use the default serialization method. You probably don't want to specify this yourself
///
Default,
}
}