[IronPython] Problems with 'unbound-class-instance' method

Okko Willeboordse okko.willeboordse at gmail.com
Wed May 19 11:54:02 CEST 2010


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();
    ...



More information about the Ironpython-users mailing list