HttpMethod.Inequality(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 op_Inequality : 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

適用対象