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.
Lidarr/NzbDrone.Core/Helpers/SabnzbdPriorityTypeConverte...

32 lines
908 B

using System;
using System.Linq;
using Newtonsoft.Json;
using NzbDrone.Core.Download.Clients.Sabnzbd;
namespace NzbDrone.Core.Helpers
{
public class SabnzbdPriorityTypeConverter : JsonConverter
{
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
var priorityType = (SabPriorityType)value;
writer.WriteValue(priorityType.ToString());
}
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
{
var queuePriority = reader.Value.ToString();
SabPriorityType output;
Enum.TryParse(queuePriority, out output);
return output;
}
public override bool CanConvert(Type objectType)
{
return objectType == typeof(SabPriorityType);
}
}
}