CngProvider.Inequality(CngProvider, CngProvider) 運算子
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
判斷這兩個 CngProvider 物件是否不是代表相同的金鑰儲存提供者 (KSP)。
public:
static bool operator !=(System::Security::Cryptography::CngProvider ^ left, System::Security::Cryptography::CngProvider ^ right);
public static bool operator != (System.Security.Cryptography.CngProvider? left, System.Security.Cryptography.CngProvider? right);
public static bool operator != (System.Security.Cryptography.CngProvider left, System.Security.Cryptography.CngProvider right);
static member op_Inequality : System.Security.Cryptography.CngProvider * System.Security.Cryptography.CngProvider -> bool
Public Shared Operator != (left As CngProvider, right As CngProvider) As Boolean
參數
- left
- CngProvider
指定 KSP 的物件。
- right
- CngProvider
另一個物件,要與 left
參數所識別的物件比較。
傳回
如果兩個物件不是代表相同的 KSP 則為 true
,否則為 false
。