2 references to OrdinalComparer
Microsoft.AspNetCore.Http.RequestDelegateGenerator (2)
StaticRouteHandlerModel\EndpointHttpMethodComparer.cs (2)
14
public bool Equals(Endpoint x, Endpoint y) =>
OrdinalComparer
.Equals(x.HttpMethod, y.HttpMethod);
16
public int GetHashCode(Endpoint obj) =>
OrdinalComparer
.GetHashCode(obj.HttpMethod);