multy threading wpf
- by Eran
Hey,
I'm using web refernce call in new working thread in my application as follow:
Thread callRunner = new Thread(delegate() { _mediator.IncomingCallDetails(phoneNumber); });
callRunner.Start() ;
the _mediator calls the web refernce and replay to the caller in event as follow:
void IncomingCallComplited(IncomingCallEventArg args)
{
…