You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using Microsoft.AspNet.SignalR.Json;
|
|
|
|
|
using NzbDrone.Common.Serializer;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.SignalR
|
|
|
|
|
{
|
|
|
|
|
public class Serializer : IJsonSerializer
|
|
|
|
|
{
|
|
|
|
|
private readonly JsonNetSerializer _signalRSerializer = new JsonNetSerializer();
|
|
|
|
|
|
|
|
|
|
public void Serialize(object value, TextWriter writer)
|
|
|
|
|
{
|
|
|
|
|
if (value.GetType().FullName.StartsWith("NzbDrone"))
|
|
|
|
|
{
|
|
|
|
|
Json.Serialize(value, writer);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_signalRSerializer.Serialize(value, writer);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public object Parse(TextReader reader, Type targetType)
|
|
|
|
|
{
|
|
|
|
|
return Json.Deserialize(reader.ReadToEnd(), targetType);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|