ErrCode

ErrCode ·

  • Nihon
ErrCode bookmarked post in 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...
ErrCode bookmarked post in 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.

ErrCode starred community
ErrCode starred community
ErrCode starred community
ErrCode starred community

Using Zyan with Named Pipes

faq

Cool. Will try that out. Thanks a lot! :laughing:

ErrCode liked post in 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...

Using Zyan with Named Pipes

faq

Testing this out too. Something weird about this reply editor on my phone, where the cursor didn’t go where I expected it.

Thanks again for the reply.

Next question, if I want bidirectional async messaging I assume I will need your example above and then...

Joined GitQ

on