Found 124 packages
Decorate your controllers with ExplicitDisposeAttribute to automatically dispose objects via ActionFilterAttribute.OnActionExecuted.
Thread-safe implementation of the .NET Dispose Pattern
Fody add-in that helps with implementing IDisposable.
This library is a class library that allows you to easily use scopes to manage instances of objects that implement the `IDisposable` interface. Register the `IDisposable`s that need to be released into the scope, and then automatically release all registered objects at the end of the scope.
A C# source generator that automatically implements IDisposable and IAsyncDisposable. Check the changelog at https://github.com/Archomeda/DisposeGenerator/blob/master/CHANGELOG.md
A Source Generator that automatically implements the Dispose method of IDisposable and the DisposeAsync method of IAsyncDisposable.
Wrap an object in a disposable decorator to attempt to dispose the object later. This is useful when retrieving an instance of an object from a factory or container while only having an interface reference. If the interface does not implement IDisposable or IAsyncDisposable, but the concrete class does, this will allow you to dispose the instance without the need to check for the interface and cast it.
This library is a AspNetCore class library that allows you to easily use scopes to manage instances of objects that implement the `IDisposable` interface. Register the `IDisposable`s that need to be released into the scope, and then automatically release all registered objects at the end of the scope.
Base object for disposing managed and unmanaged objects. Supports async disposing with IAsyncDisposable as well as the standard IDisposable.
A .NET library that provides an easy to use, correct implementation of the Dispose/Finalize Pattern.
Base classes for disposable objects.
Fody add-in that helps tracking down undisposed objects
Implementing Dispose pattern automatically using Source Generator feature.
The `Reactive.Logger` module monitors calls to the RX delegates OnNext, OnSubscribe, OnDispose, OnCompleted, OnError
Fork of Janitor.Fody that wants to be more explicit.
Types, interfaces & extension methods for creating or dealing with disposable resources in .Net.
AsyncMemoryCache allows you to lazily create cache entries while also making sure to dispose of them properly when evicted.
A source generator for creating best-practice IDisposable implementation using a [Disposable] attribute
Auto gen dispose pattern