Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Equals() [1/3]

bool System.Net.Http.HttpAuthority.Equals ( [NotNullWhen(true)] HttpAuthority other)
inline

Definition at line 19 of file HttpAuthority.cs.

20 {
21 if (other != null && string.Equals(IdnHost, other.IdnHost))
22 {
23 return Port == other.Port;
24 }
25 return false;
26 }

References System.Net.Equals, System.Net.Http.HttpAuthority.IdnHost, System.other, and System.Net.Http.HttpAuthority.Port.