Alexey Yakovlev

yallie ·

yallie/Zyan

Using Zyan with Named Pipes

faq

Here is a better location for the Zyan community: https://gitq.com/zyanfx/Zyan
The current one was created under my user's account instead of the zyanfx org account.

GitQLab/gitq.com

Can't add Github organizations?

bug

My bad! You're totally right!

I could swear I'd granted access when I first signed up.
Apparently, I was wrong, as seen in my profile.
Now the access is granted, and I can add my organizations.

Thanks for your reply and thanks for the great app :)

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...