ClientEntry
class ClientEntry
Represents a cached client and its last-used timestamp.
using System.Runtime.CompilerServices;
namespace System.ClientModel.Primitives
{
[System.Runtime.CompilerServices.NullableContext(1)]
[System.Runtime.CompilerServices.Nullable(0)]
internal class ClientEntry
{
public object Client { get; }
public long LastUsed { get; set; }
public ClientEntry(object client, long lastUsed)
{
Client = client;
LastUsed = lastUsed;
}
}
}