mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-17 02:49:05 -07:00
28 lines
648 B
C#
28 lines
648 B
C#
|
using MediaBrowser.Controller.Dlna;
|
|||
|
|
|||
|
namespace MediaBrowser.Dlna.Profiles
|
|||
|
{
|
|||
|
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
|
|||
|
}
|
|||
|
}
|
|||
|
};
|
|||
|
}
|
|||
|
}
|
|||
|
}
|