Files
mROA/mROA/Abstract/IRemoteObjectFactory.cs
T

9 lines
205 B
C#

using mROA.Implementation;
namespace mROA.Abstract
{
public interface IRemoteObjectFactory : IInjectableModule
{
T Produce<T>(ComplexObjectIdentifier id, IEndPointContext context);
}
}