2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2016-10-25 23:01:42 -07:00
|
|
|
using System.IO;
|
2016-11-03 15:34:16 -07:00
|
|
|
using System.Reflection;
|
2017-08-15 23:43:41 -07:00
|
|
|
using MediaBrowser.Model.Reflection;
|
2016-10-25 23:01:42 -07:00
|
|
|
|
2017-08-15 23:43:41 -07:00
|
|
|
namespace Emby.Server.Implementations.Reflection
|
2016-10-25 23:01:42 -07:00
|
|
|
{
|
|
|
|
public class AssemblyInfo : IAssemblyInfo
|
|
|
|
{
|
|
|
|
public Stream GetManifestResourceStream(Type type, string resource)
|
|
|
|
{
|
|
|
|
return type.Assembly.GetManifestResourceStream(resource);
|
|
|
|
}
|
2016-11-04 01:31:05 -07:00
|
|
|
|
|
|
|
public string[] GetManifestResourceNames(Type type)
|
|
|
|
{
|
|
|
|
return type.Assembly.GetManifestResourceNames();
|
|
|
|
}
|
2016-11-19 09:51:49 -07:00
|
|
|
|
|
|
|
public Assembly[] GetCurrentAssemblies()
|
|
|
|
{
|
|
|
|
return AppDomain.CurrentDomain.GetAssemblies();
|
|
|
|
}
|
2016-10-25 23:01:42 -07:00
|
|
|
}
|
|
|
|
}
|