1 write to Host
Microsoft.AspNetCore.HeaderParsing (1)
HostHeaderValue.cs (1)
23
Host
= Throw.IfNull(host);
6 references to Host
Microsoft.AspNetCore.HeaderParsing (5)
HostHeaderValue.cs (5)
93
public bool Equals(HostHeaderValue other) =>
Host
.Equals(other.
Host
, StringComparison.Ordinal) && Port == other.Port;
106
public override int GetHashCode() => HashCode.Combine(
Host
, Port);
116
return $"{
Host
}:{Port.Value}";
119
return
Host
;
Microsoft.AspNetCore.HeaderParsing.Tests (1)
ParserTests.cs (1)
22
Assert.Equal("web.vortex.data.microsoft.com", result.
Host
);