IdentityReference.Inequality(IdentityReference, IdentityReference) Operator
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
2 つの IdentityReference オブジェクトを比較して、等しくないかどうかを判断します。
Value プロパティによって返される正規名表現と異なる正規名表現がある場合、またはオブジェクトの 1 つがnullされていて、もう一方がされていない場合、それらは等しくないと見なされます。
public:
static bool operator !=(System::Security::Principal::IdentityReference ^ left, System::Security::Principal::IdentityReference ^ right);
public static bool operator !=(System.Security.Principal.IdentityReference? left, System.Security.Principal.IdentityReference? right);
public static bool operator !=(System.Security.Principal.IdentityReference left, System.Security.Principal.IdentityReference right);
static member op_Inequality : System.Security.Principal.IdentityReference * System.Security.Principal.IdentityReference -> bool
Public Shared Operator != (left As IdentityReference, right As IdentityReference) As Boolean
パラメーター
- left
- IdentityReference
不等値比較に使用する左 IdentityReference オペランド。 このパラメーターは、null に設定できます。
- right
- IdentityReference
不等値比較に使用する右側の IdentityReference オペランド。 このパラメーターは、null に設定できます。
返品
true
leftとrightが等しくない場合はfalse。
注釈
この演算子の同等のメソッドは IdentityReference.Equals。