.NET Remoting is a Microsoft application programming interface (API) for interprocess communication released in 2002 with the 1.0 version of .NET framework.
I have an app with the following basic architecture: A windows service (Service) that registers a .NET type (RemoteObject) for …
.net multithreading remotingGiven this MarshalByRef class: public class MyRemotedClass : MarshalByRef { public void DoThis() { ... } public void DoThat() { ... } } Client side code: MyRemotedClass m = GetSomehowMyRemotedClass(); …
.net multithreading remoting