What is Instance Deactivation in Windows Communication Foundation? How explicitly we can deactivate an instance?
Instance Deactivation: When a service method being called from client, its forwarded to a service instance. So, Instance deactivation means that the moment this service instance is disposed off by WCF.
In order to explicitly deactivate a service instance, we will do the following.
OperationContext.Current.InstanceContext.ReleaseServiceInstance();