HttpMethod.Equality(HttpMethod, HttpMethod) 演算子

定義

2 つの HttpMethod オブジェクトを比較する等値演算子。

public:
 static bool operator ==(System::Net::Http::HttpMethod ^ left, System::Net::Http::HttpMethod ^ right);
public static bool operator == (System.Net.Http.HttpMethod left, System.Net.Http.HttpMethod right);
public static bool operator == (System.Net.Http.HttpMethod? left, System.Net.Http.HttpMethod? right);
static member ( = ) : System.Net.Http.HttpMethod * System.Net.Http.HttpMethod -> bool
Public Shared Operator == (left As HttpMethod, right As HttpMethod) As Boolean

パラメーター

left
HttpMethod

等値演算子の左辺にある HttpMethod

right
HttpMethod

等値演算子に表示される右側の HttpMethod

戻り値

指定した left パラメーターと right パラメーターが等しい場合は true。それ以外の場合は false

適用対象