Castle.MicroKernel.LifecycleConcerns.DisposalConcern.Apply C# (CSharp) Method

Apply() public method

public Apply ( Castle model, object component ) : void
model Castle
component object
return void
		public void Apply(Castle.Core.ComponentModel model, object component)
		{
			((IDisposable)component).Dispose();
		}
	}