Trigger events over the wire in .net

I need a way to trigger events on remote processes "over the wire" and pass parameters (xml serialization, whatever). I want to be able to do such things.

foreach(childClient c in clientList)
{
    MyEvent += c.EventHandler;
}

MyEvent("param");

What technologies are good for this? WCF?

This is a small deployment in a home software project, so the minimum overhead in design is a plus, it is not necessary to be “fast” and not handle large amounts of traffic.

+3
source share
1 answer

, WCF .NET. , , , .. , NET.TCP, . .

, .

+6

Source: https://habr.com/ru/post/1706311/


All Articles