Table of Contents

Class LastReferenceRemovedEventArgs<TKey>

Namespace
Acuit.Pinpoint.ResourceManagement
Assembly
Acuit.Pinpoint.ResourceManagement.Abstractions.dll

Event arguments for the LastReferenceRemoved event.

public class LastReferenceRemovedEventArgs<TKey> : EventArgs where TKey : notnull

Type Parameters

TKey

The type of the key used to identify different resources, which must be a non-nullable type.

Inheritance
LastReferenceRemovedEventArgs<TKey>
Inherited Members

Constructors

LastReferenceRemovedEventArgs(TKey)

Initializes a new instance of the LastReferenceRemovedEventArgs<TKey> class.

public LastReferenceRemovedEventArgs(TKey key)

Parameters

key TKey

The key of the resource for which the last reference was removed.

Properties

Key

Gets the key of the resource for which the last reference was removed.

public TKey Key { get; }

Property Value

TKey