| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 | 
							- using MediaBrowser.Model.Extensions;
 
- using System.Collections.Generic;
 
- using System.Xml.Serialization;
 
- using MediaBrowser.Model.Dlna;
 
- namespace MediaBrowser.Model.Dlna
 
- {
 
-     public class SubtitleProfile
 
-     {
 
-         [XmlAttribute("format")]
 
-         public string Format { get; set; }
 
-         [XmlAttribute("method")]
 
-         public SubtitleDeliveryMethod Method { get; set; }
 
-         [XmlAttribute("didlMode")]
 
-         public string DidlMode { get; set; }
 
-         [XmlAttribute("language")]
 
-         public string Language { get; set; }
 
-         [XmlAttribute("container")]
 
-         public string Container { get; set; }
 
-         public string[] GetLanguages()
 
-         {
 
-             return ContainerProfile.SplitValue(Language);
 
-         }
 
-         public bool SupportsLanguage(string subLanguage)
 
-         {
 
-             if (string.IsNullOrEmpty(Language))
 
-             {
 
-                 return true;
 
-             }
 
-             if (string.IsNullOrEmpty(subLanguage))
 
-             {
 
-                 subLanguage = "und";
 
-             }
 
-             var languages = GetLanguages();
 
-             return languages.Length == 0 || ListHelper.ContainsIgnoreCase(languages, subLanguage);
 
-         }
 
-     }
 
- }
 
 
  |