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.
27 lines
684 B
27 lines
684 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace NzbDrone.Common.Http
|
|
{
|
|
public sealed class HttpAccept
|
|
{
|
|
public static readonly HttpAccept Rss = new HttpAccept("application/rss+xml, text/rss+xml, text/xml");
|
|
public static readonly HttpAccept Json = new HttpAccept("application/json");
|
|
public static readonly HttpAccept Html = new HttpAccept("text/html");
|
|
|
|
public String Value { get; private set; }
|
|
|
|
public HttpAccept(String accept)
|
|
{
|
|
Value = accept;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Value;
|
|
}
|
|
}
|
|
}
|