What are the ways to configure Remoting objects before client can use them? - .Net Remoting

What are the ways to configure Remoting objects before client can use them?

There are two ways that the remoting objects can be configured. They can be configured by calling configuration methods inside the application. .Net Framework allows configuring objects also by adding configuration section in the application configuration file or machine.config file. Application-level XML settings take precedence over machine.config. When you apply any change in the configuration section, you don’t need to recompile the code. On the other hand, any change in the setting applied programmatically would require recompiling the code.
Define Delegates and Events - .Net Remoting
.Net Remoting - A delegate acts like a strongly type function pointer.....
What is asynchronous programming? - .Net Remoting
.Net Remoting supports asynchronous programming. In this model, a call is made to a class method while the calling program continues to execute.....
When do we use delegates in your remoting applications? - .Net Remoting
.Net Remoting - You use delegates to implement callback functions, event programming, and asynchronous programming in your remoting applications.....
Post your comment