Basically, if my service is: public void DoSomethingThatTakesAwhile() { ... }, will the call to that service cause my application to wait for the method to finish?

I ask because I don't want my caller to be able to continue until that method finishes in case the method needs to throw a fault exception.

link|improve this question

76% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Yes, the call is synchronous, unless the operation is marked with [OperationContract(IsOneWay = true)]

link|improve this answer
I think it would be be more accurate to say "Yes, your application will wait for the method to finish"...synchronous is a bit misleading because a one-way operation can still block. – Schneider May 18 '11 at 12:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.