HashAlgorithmName.TryFromOid(String, HashAlgorithmName) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試將指定的 OID 轉換為哈希演算法名稱。
public:
static bool TryFromOid(System::String ^ oidValue, [Runtime::InteropServices::Out] System::Security::Cryptography::HashAlgorithmName % value);
public static bool TryFromOid (string oidValue, out System.Security.Cryptography.HashAlgorithmName value);
static member TryFromOid : string * HashAlgorithmName -> bool
Public Shared Function TryFromOid (oidValue As String, ByRef value As HashAlgorithmName) As Boolean
參數
- oidValue
- String
哈希演算法的 OID。
- value
- HashAlgorithmName
當此方法傳回 true
時,為雜湊演算法。 當這個方法傳 false
回 時,會 default
包含 。
傳回
如果 OID 成功對應到雜湊演算法,則為 true
;否則為 false
。
例外狀況
oidValue
為 null
。