-
-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Interface with string parameters fail #91
Comments
Hi @large , Is the In the latest release (v2.3.1), both TCP and NamedPipe server types should be able to work with this kind of service contract signature. |
@dmiu yes it is share between server and client. But it works on everything else than the strings. |
@large Sorry but I'm not able to reproduce your issue and string should work for every existing version (covered by tests) |
I'm facing the same issue. Communication between a .NET Core and .NET Framework process is throwing the following exception: |
@mheskol I did not have any success on this, so I created my own IPC to handle it. Maybe this can be implemented into this? |
Describe the bug
Functions like this fails:
bool Reload(string item);
Functions without string works as it should:
bool ReloadAll();
bool ReloadIteml(int num);
bool TryAll(bool areyousure);
It worked in earlier releases, but failing now.
Expected behavior
Strings should work, the IpcServiceClient.InvokeAsync returns false always not triggering the function in the other side.
The text was updated successfully, but these errors were encountered: