Returns the list of IDisposable instances that will be disposed of when this
instance is being disposed. The list contains scoped instances that are cached in this instance,
and instances explicitly registered for disposal using
RegisterForDisposal(IDisposable). The instances are returned in order of creation.
When Container.Dispose is called, the scope will ensure
Dispose is called on each instance in this list. The instance will be
disposed in opposite order as they appear in the list.
Namespace: SimpleInjector
Assembly: SimpleInjector (in SimpleInjector.dll) Version: 5.3.0
Syntax
Return Value
Type: IDisposableThe list of IDisposable instances that will be disposed of when thi Scope instance is being disposed.
See Also