Implemented interface member:
7 references to Equals
Microsoft.AspNetCore.Http.Abstractions (2)
Internal\HeaderSegment.cs (2)
34return _formatting.Equals(other._formatting) && _data.Equals(other._data);
Microsoft.AspNetCore.Mvc.Core (2)
Formatters\MediaType.cs (2)
266if (parsedMediaType.Type.Equals(default(StringSegment)) || 267parsedMediaType.SubType.Equals(default(StringSegment)))
Microsoft.Extensions.Primitives (3)
StringSegment.cs (3)
199return obj is StringSegment segment && Equals(segment); 292public static bool operator ==(StringSegment left, StringSegment right) => left.Equals(right); 300public static bool operator !=(StringSegment left, StringSegment right) => !left.Equals(right);