jellyfin/Emby.Server.Implementations/Reflection/AssemblyInfo.cs

26 lines
643 B
C#
Raw Normal View History

using System;
2016-10-25 23:01:42 -07:00
using System.IO;
2016-11-03 15:34:16 -07:00
using System.Reflection;
using MediaBrowser.Model.Reflection;
2016-10-25 23:01:42 -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
}
}