|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.IO;
using System.Threading.Tasks;
using System.Xml;
namespace System.Xml.Resolvers
{
//
// XmlPreloadedResolver is an XmlResolver that which can be pre-loaded with data.
// By default it contains well-known DTDs for XHTML 1.0 and RSS 0.91.
// Custom mappings of URIs to data can be added with the Add method.
//
public partial class XmlPreloadedResolver : XmlResolver
{
public override Task<object> GetEntityAsync(Uri absoluteUri,
string? role,
Type? ofObjectToReturn)
{
ArgumentNullException.ThrowIfNull(absoluteUri);
PreloadedData? data;
if (!_mappings.TryGetValue(absoluteUri, out data))
{
if (_fallbackResolver != null)
{
return _fallbackResolver.GetEntityAsync(absoluteUri, role, ofObjectToReturn);
}
throw new XmlException(SR.Format(SR.Xml_CannotResolveUrl, absoluteUri));
}
if (ofObjectToReturn == null || ofObjectToReturn == typeof(Stream) || ofObjectToReturn == typeof(object))
{
return Task.FromResult<object>(data.AsStream());
}
else if (ofObjectToReturn == typeof(TextReader))
{
return Task.FromResult<object>(data.AsTextReader());
}
else
{
throw new XmlException(SR.Xml_UnsupportedClass);
}
}
}
}
|