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.
23 lines
489 B
23 lines
489 B
using System.Xml;
|
|
using MediaBrowser.Model.Xml;
|
|
|
|
namespace Emby.Common.Implementations.Xml
|
|
{
|
|
public class XmlReaderSettingsFactory : IXmlReaderSettingsFactory
|
|
{
|
|
public XmlReaderSettings Create(bool enableValidation)
|
|
{
|
|
var settings = new XmlReaderSettings();
|
|
|
|
if (!enableValidation)
|
|
{
|
|
#if NET46
|
|
settings.ValidationType = ValidationType.None;
|
|
#endif
|
|
}
|
|
|
|
return settings;
|
|
}
|
|
}
|
|
}
|