In WCF, PerCall, PerSession, and Single are
instance context modes that define how and when WCF service instances are created and reused during client communication.
1. PerCall
Description: A new service instance is created for
every method call from any client.
State: Not maintained between calls.
Concurrency: No synchronization needed.
Use case: Stateless operations (e.g., utility services, logging).
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
In WCF, PerCall, PerSession, and Single are instance context modes that define how and when WCF service instances are created and reused during client communication.
1. PerCall
2. PerSession
NetTcp, etc.)3. Single (Singleton)
Summary Table