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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.