Alexey Yakovlev

yallie ·

yallie/Zyan

Using Zyan with Named Pipes

faq

No need to. Try using events for callbacks, something like that:

public interface ISampleService
{
     void Hello();
     event EventHandler Callback;
}

// client-side
var proxy = connection.CreateProxy<ISampleService>();
proxy.Callback += (s, e) => Con...