aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dlna/DeviceIdentification.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-22 15:37:15 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-03-22 15:37:15 -0400
commitbd7486b95249dabe6296c0c8d900baebda34adc8 (patch)
treee7d769098819203225af86db1db27f756955072c /MediaBrowser.Controller/Dlna/DeviceIdentification.cs
parent76fe96e3e334cb5423637d30841da3130eace4d3 (diff)
added media profiles
Diffstat (limited to 'MediaBrowser.Controller/Dlna/DeviceIdentification.cs')
-rw-r--r--MediaBrowser.Controller/Dlna/DeviceIdentification.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Dlna/DeviceIdentification.cs b/MediaBrowser.Controller/Dlna/DeviceIdentification.cs
index 4ccba1106..20c94ad50 100644
--- a/MediaBrowser.Controller/Dlna/DeviceIdentification.cs
+++ b/MediaBrowser.Controller/Dlna/DeviceIdentification.cs
@@ -67,5 +67,12 @@ namespace MediaBrowser.Controller.Dlna
{
public string Name { get; set; }
public string Value { get; set; }
+ public HeaderMatchType Match { get; set; }
+ }
+
+ public enum HeaderMatchType
+ {
+ Equals = 0,
+ Substring = 1
}
}