2013-01-25 22:03:28 +03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using Nancy;
|
2013-05-12 18:18:17 +03:00
|
|
|
using NzbDrone.Common.Serializer;
|
2013-01-25 22:03:28 +03:00
|
|
|
|
2013-02-23 23:35:26 +03:00
|
|
|
namespace NzbDrone.Api.Extensions
|
2013-01-25 22:03:28 +03:00
|
|
|
{
|
|
|
|
public class NancyJsonSerializer : ISerializer
|
|
|
|
{
|
|
|
|
public bool CanSerialize(string contentType)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Serialize<TModel>(string contentType, TModel model, Stream outputStream)
|
|
|
|
{
|
2013-05-13 05:52:55 +03:00
|
|
|
Json.Serialize(model, outputStream);
|
2013-01-25 22:03:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
public IEnumerable<string> Extensions { get; private set; }
|
|
|
|
}
|
|
|
|
}
|