Rfc3161TimestampToken.TryDecode 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
嘗試將 encodedBytes
內容轉譯為 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
參數
- encodedBytes
- ReadOnlyMemory<Byte>
包含 DER 編碼時間戳記權杖的緩衝區。
- token
- Rfc3161TimestampToken
當此方法傳回時,如果解碼成功,則為成功解碼的時間戳記權杖;如果解碼失敗,則為 null
。 這個參數會被視為未初始化。
- bytesConsumed
- Int32
這個方法傳回時,從 encodedBytes
讀取的位元組數。 這個參數會被視為未初始化。
傳回
如果 encodedBytes
成功轉譯為時間戳記權杖,則為 true
;否則為 false
。