jellyfin/MediaBrowser.Model/Reflection/IAssemblyInfo.cs

15 lines
319 B
C#
Raw Normal View History

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