| File: StaticRouteHandlerModel\EndpointHttpMethodComparer.cs | Web Access |
| Project: src\aspnetcore\src\Http\Http.Extensions\gen\Microsoft.AspNetCore.Http.RequestDelegateGenerator\Microsoft.AspNetCore.Http.RequestDelegateGenerator.csproj (Microsoft.AspNetCore.Http.RequestDelegateGenerator) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections.Generic; namespace Microsoft.AspNetCore.Http.RequestDelegateGenerator.StaticRouteHandlerModel; internal sealed class EndpointHttpMethodComparer : IEqualityComparer<Endpoint> { public static readonly EndpointHttpMethodComparer Instance = new(); private static readonly IEqualityComparer<string> OrdinalComparer = StringComparer.Ordinal; public bool Equals(Endpoint x, Endpoint y) => OrdinalComparer.Equals(x.HttpMethod, y.HttpMethod); public int GetHashCode(Endpoint obj) => OrdinalComparer.GetHashCode(obj.HttpMethod); }