Let's understand here what alternative of WCF in .Net Core.
WCF is not supported in .NET Core since it's a Windows specific technology and .NET Core is supposed to be cross-platform.
If you are implementing inter-process communication consider trying the IpcServiceFramework project.
It allows creating services in WCF style like this:
Create service contract
Implement the service
Host the service in Console application
Invoke the service from client process
Summary
So far we learnt What replaces WCF in .Net Core. Please give your comments if have any suggestion.
Post a Comment