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

◆ GetHashCode()

override int System.Net.Http.HttpMethod.GetHashCode ( )
inline

Definition at line 137 of file HttpMethod.cs.

138 {
139 if (_hashcode == 0)
140 {
141 _hashcode = StringComparer.OrdinalIgnoreCase.GetHashCode(_method);
142 }
143 return _hashcode;
144 }
readonly string _method
Definition HttpMethod.cs:9

References System.Net.Http.HttpMethod._hashcode, System.Net.Http.HttpMethod._method, and System.StringComparer.OrdinalIgnoreCase.