.NET Remoting with Events in Visual C++
By Kate Gregory Go to page: 1 2 Next In my previous column , I introduced the basics of .NET remoting. I showed how to create a remoted class, host it in a server application, and call methods of the class from a client application. The communication in that simple example was all client-driven. When the client wanted information from the server, it called methods of the remoted object such as Greet() or Records(). These methods don't take parameters, but there's no restriction on...