Today I have no access to the system so I can't check
clr.Convert(RemoteServerApi.EventManager, IEventManager)

I have no access to the sources;

The .NET client app does;

    RemoteServerApi sApi;
    sApi = new RemoteServerApi();
    IEnumerable<string> DevList =
sApi.EventManager.GetAllEventTypes();

When I ask VS to 'Go To Definition' I get;

  public class RemoteServerApi : IServerApi
  {
    ...
    public IDeviceManager DeviceManager { get; }
    public virtual IEventManager EventManager { get; }
    ...
  }

  public interface IEventManager
  {
    IEnumerable<string> GetAllEventTypes();
    ...
_______________________________________________
Users mailing list
[email protected]
http://lists.ironpython.com/listinfo.cgi/users-ironpython.com

Reply via email to