views:

155

answers:

1

Does the ServiceBehavior setting InstanceContextMode.Single sets a single instance regardless of the number of endpoints?

+3  A: 

Yes, you will get only one instance with InstanceContextMode.Single, regardless of the number of endpoints.

Daniel Vassallo