Factory for the creation of a delegate that applies caching to the supplied
transientInstanceCreator.
Namespace: SimpleInjector
Assembly: SimpleInjector (in SimpleInjector.dll) Version: 5.3.0
Syntax
public delegate Func<Object> CreateLifestyleApplier( Func<Object> transientInstanceCreator )
Parameters
- transientInstanceCreator
- Type: System.Func<Object>
A factory for creating new instances.
Return Value
Type: Func<Object>A factory that returns cached instances.
See Also