Files
LanMountainDesktop/LanMountainDesktop.PluginSdk/IPluginExportRegistry.cs
lincube d3356f3319 0.5.19
插件系统V2
2026-03-12 09:22:03 +08:00

14 lines
414 B
C#

namespace LanMountainDesktop.PluginSdk;
public interface IPluginExportRegistry
{
IReadOnlyList<PluginServiceExportDescriptor> GetExports();
IReadOnlyList<PluginServiceExportDescriptor> GetExports(Type contractType);
PluginServiceExportDescriptor? GetExport(Type contractType, string providerPluginId);
TContract? GetExport<TContract>(string providerPluginId)
where TContract : class;
}