2019-01-13 20:02:23 +00:00
|
|
|
using System;
|
2018-12-27 23:27:57 +00:00
|
|
|
using System.IO;
|
|
|
|
using System.Reflection;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Reflection
|
|
|
|
{
|
|
|
|
public interface IAssemblyInfo
|
|
|
|
{
|
|
|
|
Stream GetManifestResourceStream(Type type, string resource);
|
|
|
|
string[] GetManifestResourceNames(Type type);
|
|
|
|
|
|
|
|
Assembly[] GetCurrentAssemblies();
|
|
|
|
}
|
|
|
|
}
|