Instance Management using WCF
Instance Management using WCF:
Below given example make clear the instancing behaviour setting, which controls how instances of a service class are created in response to client requests.
Types of instancing modes:
PerCall: A new instance is created for each client request.
PerSession: A new instance is created for each new client session, and it will be available throughout the session
Single: Only one instance handles for all client requests throughout the application
No comments
