Expand
How to: Call the Methods of a Remote Object Asynchronously 

The process for asynchronous programming is as straightforward as that for a single application domain.

To call a method of a remote object asynchronously

  • Create an instance of an object that can receive a remote call to a method.

    Dim obj as ServiceClass = new ServiceClass()
    
This language is not supported or no code example is available.
This language is not supported or no code example is available.

 [C#]
int count = 0;
while (!RemAr.IsCompleted)
{
    Console.Write("\rNot completed: " + (++count).ToString());
    Thread.Sleep(1);
}

See Also

Community ContentAdd
Page view tracker