Table of Contents

Enum DependencyImplementorDisposalStrategyType

Namespace
LfrlAnvil.Dependencies
Assembly
LfrlAnvil.Dependencies.dll

Specifies available automatic dependency implementor disposal strategies.

public enum DependencyImplementorDisposalStrategyType : byte

Fields

RenounceOwnership = 2

Disables automatic disposal.

UseCallback = 1

Invokes a custom callback.

UseDisposableInterface = 0

Invokes the Dispose() method if possible. This is the default strategy.