IApplicationResourceStreamResolver.cs 607 B

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