File: PolicyNameKey.cs
Web Access
Project: src\aspnetcore\src\Middleware\RateLimiting\src\Microsoft.AspNetCore.RateLimiting.csproj (Microsoft.AspNetCore.RateLimiting)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace Microsoft.AspNetCore.RateLimiting;

internal sealed class PolicyNameKey
{
    public required string PolicyName { get; init; }

    public override bool Equals(object? obj)
    {
        if (obj is PolicyNameKey key)
        {
            return PolicyName == key.PolicyName;
        }
        return false;
    }

    public override int GetHashCode()
    {
        return PolicyName.GetHashCode();
    }
}