Castle.MicroKernel.Lifestyle.PerWebRequestLifestyleManager.Release C# (CSharp) Method

Release() public method

public Release ( object instance ) : void
instance object
return void
		public override void Release(object instance)
		{
			// Since this method is called by the kernel when an external
			// request to release the component is made, it must do nothing
			// to ensure the component is available during the duration of 
			// the web request.  An internal Evict method is provided to
			// allow the actual releasing of the component at the end of
			// the web request.
		}
PerWebRequestLifestyleManager