12 lines
358 B
C#
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);
|
|
}
|
|
} |