Rfc3161TimestampToken.TryDecode Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Tente d’interpréter le contenu de encodedBytes
comme un jeton d’horodatage encodé en DER.
public:
static bool TryDecode(ReadOnlyMemory<System::Byte> encodedBytes, [Runtime::InteropServices::Out] System::Security::Cryptography::Pkcs::Rfc3161TimestampToken ^ % token, [Runtime::InteropServices::Out] int % bytesConsumed);
public static bool TryDecode (ReadOnlyMemory<byte> encodedBytes, out System.Security.Cryptography.Pkcs.Rfc3161TimestampToken? token, out int bytesConsumed);
public static bool TryDecode (ReadOnlyMemory<byte> encodedBytes, out System.Security.Cryptography.Pkcs.Rfc3161TimestampToken token, out int bytesConsumed);
static member TryDecode : ReadOnlyMemory<byte> * Rfc3161TimestampToken * int -> bool
Public Shared Function TryDecode (encodedBytes As ReadOnlyMemory(Of Byte), ByRef token As Rfc3161TimestampToken, ByRef bytesConsumed As Integer) As Boolean
Paramètres
- encodedBytes
- ReadOnlyMemory<Byte>
Mémoire tampon contenant le jeton d’horodatage encodé en DER.
- token
- Rfc3161TimestampToken
Lorsque cette méthode est retournée, jeton d’horodatage correctement décodé si le décodage a réussi, ou null
si le décodage a échoué. Ce paramètre est traité comme étant non initialisé.
- bytesConsumed
- Int32
Quand cette méthode est retournée, nombre d’octets qui ont été lus depuis encodedBytes
. Ce paramètre est traité comme étant non initialisé.
Retours
true
si encodedBytes
a été correctement interprété comme un jeton d’horodatage ; sinon, false
.