Files
mROA/mROA/Abstract/IRemoteObjectFactory.cs
T

9 lines
185 B
C#

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