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

◆ Equals() [1/3]

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

Definition at line 119 of file HttpMethod.cs.

120 {
121 if ((object)other == null)
122 {
123 return false;
124 }
125 if ((object)_method == other._method)
126 {
127 return true;
128 }
129 return string.Equals(_method, other._method, StringComparison.OrdinalIgnoreCase);
130 }
readonly string _method
Definition HttpMethod.cs:9

References System.Net.Http.HttpMethod._method, and System.other.

Referenced by System.Net.Http.HttpMethod.Normalize(), and System.Net.Http.HttpMethod.operator==().