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

◆ Equals() [1/3]

bool System.Net.Http.Headers.HeaderDescriptor.Equals ( HeaderDescriptor other)
inline

Definition at line 44 of file HeaderDescriptor.cs.

45 {
46 if (_knownHeader != null)
47 {
48 return _knownHeader == other._knownHeader;
49 }
50 return string.Equals(_headerName, other._headerName, StringComparison.OrdinalIgnoreCase);
51 }

References System.Net.Http.Headers.HeaderDescriptor._headerName, System.Net.Http.Headers.HeaderDescriptor._knownHeader, and System.other.