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