What is asynchronous programming? - .Net Remoting

What is asynchronous programming?

- The .Net Remoting supports asynchronous programming.

- In this model, a call is made to a class method while the calling program continues to execute.

- This increase application speed as the application continues to execute without waiting for the called methods to finish execution.

- It makes applications more responsive by adding two new keywords and using them with code that takes a longer time to run.
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.....
What are the ways to renew lifetime leases of objects? - .Net Remoting
.Net Remoting - A client can renew the lifetime lease of an object by calling the ILease.Renew method.....
What are the types of remotable objects? - .Net Remoting
.Net Remoting - Marshal-by-value objects - These objects are copied and passed by value out of the application domain...
Post your comment