2
0

IAssemblyInfo.cs 316 B

1234567891011121314
  1. using System;
  2. using System.IO;
  3. using System.Reflection;
  4. namespace MediaBrowser.Model.Reflection
  5. {
  6. public interface IAssemblyInfo
  7. {
  8. Stream GetManifestResourceStream(Type type, string resource);
  9. string[] GetManifestResourceNames(Type type);
  10. Assembly[] GetCurrentAssemblies();
  11. }
  12. }