Hi. In order to modify send operation i try to make my own implementation of IGXMedia like this
public class GXNetX : IGXMedia
{
public GXNet gXNet;
public GXNetX(NetworkType protocol, string hostName, int connectionPort)
{
gXNet = new GXNet(protocol, hostName, connectionPort);
}
......
}
but at run time i'm getting error that found method with name "properties" that is not implemented. This error found with latest versions of gurux.common and gurux.net, older then 8,4,2210,1201(net) and 8,4,2212,501 (common)
So, in other words in latest version you cannot use your own class that realise of IGXMedia.
Hi, You needs to implement…
Hi,
You needs to implement the properties dialog. You haven't implemented it.
You can do it like this:
public bool Properties(Form parent)
{
return gXNet.Properties(parent);
}
BR,
Mikko