diff --git a/.nuget/packages.config b/.nuget/packages.config
index 83e69d4..7e62aa7 100644
--- a/.nuget/packages.config
+++ b/.nuget/packages.config
@@ -1,4 +1,4 @@
-
+
\ No newline at end of file
diff --git a/src/WebApiContrib.Formatting.MsgPack/MessagePackMediaTypeFormatter.cs b/src/WebApiContrib.Formatting.MsgPack/MessagePackMediaTypeFormatter.cs
index 2e87da9..c3b75f3 100644
--- a/src/WebApiContrib.Formatting.MsgPack/MessagePackMediaTypeFormatter.cs
+++ b/src/WebApiContrib.Formatting.MsgPack/MessagePackMediaTypeFormatter.cs
@@ -1,10 +1,14 @@
using System;
using System.Collections;
using System.Collections.Generic;
+using System.IO;
using System.Linq;
+using System.Net;
+using System.Net.Http;
using System.Net.Http.Formatting;
using System.Net.Http.Headers;
-using MsgPack;
+using System.Threading.Tasks;
+using MsgPack.Serialization;
namespace WebApiContrib.Formatting.MsgPack
{
@@ -14,7 +18,7 @@ namespace WebApiContrib.Formatting.MsgPack
/// Converted from Filip W.'s MessagePackMediaTypeFormatter.
///
///
- public class MessagePackMediaTypeFormatter : BufferedMediaTypeFormatter
+ public class MessagePackMediaTypeFormatter : MediaTypeFormatter
{
private const string mediaType = "application/x-msgpack";
@@ -27,7 +31,7 @@ private static bool IsAllowedType(Type t)
return true;
return false;
- };
+ }
public MessagePackMediaTypeFormatter()
{
@@ -37,7 +41,7 @@ public MessagePackMediaTypeFormatter()
public override bool CanReadType(Type type)
{
if (type == null)
- throw new ArgumentNullException("type is null");
+ throw new ArgumentNullException("type");
return IsAllowedType(type);
}
@@ -45,12 +49,12 @@ public override bool CanReadType(Type type)
public override bool CanWriteType(Type type)
{
if (type == null)
- throw new ArgumentNullException("type is null");
+ throw new ArgumentNullException("type");
return IsAllowedType(type);
}
- public override object ReadFromStream(Type type, System.IO.Stream readStream, System.Net.Http.HttpContent content, IFormatterLogger formatterLogger)
+ public override Task