jellyfin/MediaBrowser.Dlna/Profiles/Foobar2000Profile.cs

30 lines
705 B
C#
Raw Normal View History

2014-03-26 15:06:48 +00:00
using System.Xml.Serialization;
using MediaBrowser.Controller.Dlna;
2014-03-25 05:25:03 +00:00
namespace MediaBrowser.Dlna.Profiles
{
2014-03-26 15:06:48 +00:00
[XmlRoot("Profile")]
2014-03-25 05:25:03 +00:00
public class Foobar2000Profile : DefaultProfile
{
public Foobar2000Profile()
{
Name = "foobar2000";
Identification = new DeviceIdentification
{
FriendlyName = @"foobar",
Headers = new[]
{
new HttpHeaderInfo
{
Name = "User-Agent",
Value = "foobar",
Match = HeaderMatchType.Substring
}
}
};
}
}
}