using System.Threading.Tasks;
namespace EmbedIO
{
///
/// A callback used to deserialize an HTTP request body.
///
/// The expected type of the deserialized data.
/// The whose request body is to be deserialized.
/// A Task, representing the ongoing operation,
/// whose result will be the deserialized data.
public delegate Task RequestDeserializerCallback(IHttpContext context);
}