Table of Contents

Class CacheHitEvent

Namespace
CL.MySQL2.Events
Assembly
CL.MySQL2.dll

Published when a cached query result is returned.

public record CacheHitEvent : IEvent, IEquatable<CacheHitEvent>
Inheritance
CacheHitEvent
Implements
IEvent
Inherited Members

Constructors

CacheHitEvent(string, string, string, DateTime)

Published when a cached query result is returned.

public CacheHitEvent(string ConnectionId, string TableName, string CacheKey, DateTime At)

Parameters

ConnectionId string
TableName string
CacheKey string
At DateTime

Properties

At

public DateTime At { get; init; }

Property Value

DateTime

CacheKey

public string CacheKey { get; init; }

Property Value

string

ConnectionId

public string ConnectionId { get; init; }

Property Value

string

TableName

public string TableName { get; init; }

Property Value

string