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

12 lines
358 B
C#

using System;
using Prise.Plugin;
using Prise.Proxy;
namespace Prise.Activation
{
public interface IPluginProxyCreator : IDisposable
{
IPluginBootstrapper CreateBootstrapperProxy(object remoteBootstrapper);
T CreatePluginProxy<T>(object remoteObject, IParameterConverter parameterConverter, IResultConverter resultConverter);
}
}