HashAlgorithmName.TryFromOid(String, HashAlgorithmName) Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Intenta convertir el OID especificado en un nombre de algoritmo hash.
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
Parámetros
- oidValue
- String
El OID del algoritmo hash.
- value
- HashAlgorithmName
Cuando este método devuelve true
, el algoritmo hash. Cuando este método devuelve false
, contiene default
.
Devoluciones
true
si el OID se asignó correctamente a un algoritmo hash; en caso contrario, false
.
Excepciones
oidValue
es null
.