in the process of creating a WCF service I ran into a term that\'s new to me. Basically when specifying the InstanceContextMode
I have a few options, including;
It means that only one instance of your class is created by WCF. All requests are handled by that instance. Multithreading and concurrency issues included.
Although it would probably be an implementation detail, I doubt your class is persistet (it would have to be serializable for that, which is not a requirement). The one instance simply exists as long as it is needed (i.e. the associated ServiceHost
is open).