IdentityReference.Equality(IdentityReference, IdentityReference) Operator
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
2 つの IdentityReference オブジェクトを比較し、それらのオブジェクトが等しいかどうかを確認します。 これらのオブジェクトが Value プロパティで返される標準の名前表現と同じ標準の名前表現を持つ場合、またはこれらのオブジェクトがどちらも 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 ( = ) : 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
に設定できます。
戻り値
left
と right
が等しい場合は true
。それ以外の場合は false
。
注釈
この演算子の同等のメソッドは です IdentityReference.Equals。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET