2016-10-26 06:01:42 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
2016-11-19 16:51:49 +00:00
|
|
|
|
using System.Reflection;
|
2016-10-26 06:01:42 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.Reflection
|
|
|
|
|
{
|
|
|
|
|
public interface IAssemblyInfo
|
|
|
|
|
{
|
|
|
|
|
Stream GetManifestResourceStream(Type type, string resource);
|
2016-11-04 08:31:05 +00:00
|
|
|
|
string[] GetManifestResourceNames(Type type);
|
2016-11-19 16:51:49 +00:00
|
|
|
|
|
|
|
|
|
Assembly[] GetCurrentAssemblies();
|
2016-10-26 06:01:42 +00:00
|
|
|
|
}
|
|
|
|
|
}
|