1 using System;
2 using System.IO;
3 using System.ComponentModel;
4 
5 namespace System.Xml
6 {
7     [Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
8     [EditorBrowsable(EditorBrowsableState.Never)]
9     public interface IApplicationResourceStreamResolver
10     {
11         // Methods
12         [Obsolete("This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.", true)]
13         [EditorBrowsable(EditorBrowsableState.Never)]
GetApplicationResourceStream(Uri relativeUri)14         Stream GetApplicationResourceStream(Uri relativeUri);
15     }
16 }
17