adspace


What are the 3 ways of implementing WCF(Windows Communication Foundation) concurrency?

Answer Posted / Madhur Gautam

The three ways of implementing concurrency in WCF include: InstanceContextMode.Single (single instance per call), InstanceContextMode.PerCall (a new instance for each operation), and InstanceContextMode.Session (multiple operations with a single instance within a session).

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