ScopeGetDisposables Method

Simple Injector
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

public IDisposable[] GetDisposables()

Return Value

Type: IDisposable
The list of IDisposable instances that will be disposed of when this Scope instance is being disposed.
Remarks

Thread safety: This method is not thread safe and should not be used in combination with any of the thread-safe methods.
See Also

Reference