adspace


How the concurrency mode is specified in wcf service?

Answer Posted / Mr Sambhu Kumar

The concurrency mode can be specified in a WCF service by using the ConcurrencyMode attribute, which is applied to the service operation or contract class. The ConcurrencyMode enumeration allows you to choose from three modes: Single (only one request at a time), Reentrant (one thread can call the service multiple times concurrently) and Controlled (enables fine-grained control over concurrent access using a custom concurrency class).

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are different elements of wcf srevices client configuration file?

906