Photon socket server abstraction

Options
fenderbender
edited August 2013 in DotNet
Hello fellow programmers. I am using photon socket server for our project and been quite delighted with the results. But there is a one problem which I could not solve and I am hoping for your help. On the Server2Server communication everything is done with photon's native EventData class and its SendTo method. The source code was not abstract and was lacking flexibility, so I decided to make my own EventData class which will eventually use photons class. The way I thought about it was to implement IEventData interface and its methods. But I was quite surprised that this interface did not have the actual sendTo method and now I am stuck. I have my EventData class, it has a OperationCode and dictionary to be sent. I will be thankfull for any help about this matter.