JornWildt / Ramone

A C# client framework for consuming HTTP/REST services
Other
61 stars 11 forks source link

Add default codec for byte[] #15

Closed JornWildt closed 10 years ago

JornWildt commented 10 years ago

It would be nice to be able to do this:

byte[] data = GetSomeData();
using (var response = session.Bind(SomeUrl).Put(data))
{
}