If I have a PerWebRequest
object that has a wcf proxy dependency with PerThread style, there will be a container
- a) use the same proxy instance after the container automatically releases the parent object?
- b) releasing the PerWebRequest object will cause the proxy to exit every time?
If a), should I release the service explicitly to avoid leakage, or if b) is there any real benefit to using PerThread for a proxy server if this is the only place it is being introduced?
source share