Hi,
I use a .NET API with LabVIEW 7.1 to perform some operations.
Here a some interfaces that I have to use:
interface IReader;
interface IWriter;
interface IReaderWriter: IReader, IWriter;
interface IVirtualPipe: IReaderWriter;
A method of the .NET API return me an IVirtualPipe interface.
I want to use the method Write of this object(from the inheritance of IWriter)
My problem is that I cannot see this method when I try to use the "Invoke Node" on my object.
I try to use the "To More Generic Class" on my object to retrieve the IWriter interface whithout success=>I have a "Wire: Class conflict".
So, I have two questions:
1. Why I cannot see the Write method from the object ?
2. Why I cannot retrieve the IWriter interface ?
Than
k you for your help.
Sebastien