HashAlgorithmName.TryFromOid(String, HashAlgorithmName) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Tries to convert the specified OID to a hash algorithm name.
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
Parameters
- oidValue
- String
The OID of the hash algorithm.
- value
- HashAlgorithmName
When this method returns true
, the hash algorithm. When this method returns false
, contains default
.
Returns
true
if the OID was successfully mapped to a hash algorithm; otherwise false
.
Exceptions
oidValue
is null
.
Applies to
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.