pschelpdesk/Vendor/Prise/Activation/IRemotePluginActivator.cs
2024-11-04 20:45:34 +01:00

12 lines
482 B
C#

using System;
using Microsoft.Extensions.DependencyInjection;
using Prise.Plugin;
namespace Prise.Activation
{
public interface IRemotePluginActivator : IDisposable
{
object CreateRemoteBootstrapper(IPluginActivationContext pluginActivationContext, IServiceCollection hostServices = null);
object CreateRemoteInstance(IPluginActivationContext pluginActivationContext, IPluginBootstrapper bootstrapper = null, IServiceCollection hostServices = null);
}
}