Hi,
We have an event (ImageDisplayedEvent), which we continually validate to be sure we have real time image all the time. Base on that check if a loss of image is detected we load a local video as contingency waiting for the real time image to be available again.
We believe, we are experiencing images loss as a consequence of the event missfunction. We would like to know if you are aware of any bug that event could have or if you know any other users experiencing the same issue.
If that’s the case is there any workaround or hot fix available?
As a comment in case this could guide you in the right direction, sometimes we experience that loss of image for a brief period of time but the image is recovered automatically without taking any action but some other times this period tends to be longer and if you do not restart the application the problem is not solve. This seems to be a random error but we could find yet the origin of the error.
Could you please help us,
if you need more information please let me know.
Thanks
Regards,
_imageViewerControl1.ImageDisplayedEvent += (x, y) =>
{
if (!y.WindowSize.IsEmpty)
{
Online();
lastCall = DateTime.Now;
}
else
{
Offline();
}
};