CngProperty.Equality(CngProperty, CngProperty) 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷兩個 CngProperty 物件指定的屬性名稱、值和選項是否相同。
public:
static bool operator ==(System::Security::Cryptography::CngProperty left, System::Security::Cryptography::CngProperty right);
public static bool operator == (System.Security.Cryptography.CngProperty left, System.Security.Cryptography.CngProperty right);
static member ( = ) : System.Security.Cryptography.CngProperty * System.Security.Cryptography.CngProperty -> bool
Public Shared Operator == (left As CngProperty, right As CngProperty) As Boolean
參數
- left
- CngProperty
物件,指定 Cryptography Next Generation (CNG) 金鑰或提供者的屬性。
- right
- CngProperty
另一個物件,要與 left
參數所識別的物件比較。
傳回
如果兩個物件指定相同的屬性則為 true
,否則為 false
。
備註
CngProperty 如果對象的名稱、值和選項相等,則會將其視為相等。 名稱比較會以區分大小寫的方式執行。
這個運算子 CngProperty.Equals(CngProperty)的對等方法是 。