Returns a copy of the list of IDisposable instances that will be disposed of when this
Scope instance is being disposed. The list contains scoped instances that are cached
in this Scope instance, and instances explicitly registered for disposal using
RegisterForDisposal(IDisposable). The instances are returned in order of creation.
When Scope.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 this Scope instance is being disposed.
Remarks
See Also