CoseMessage.DecodeMultiSign 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
| DecodeMultiSign(Byte[]) |
將 CBOR 承載解碼為COSE_Sign訊息。 |
| DecodeMultiSign(ReadOnlySpan<Byte>) |
將 CBOR 承載解碼為COSE_Sign訊息。 |
DecodeMultiSign(Byte[])
將 CBOR 承載解碼為COSE_Sign訊息。
public:
static System::Security::Cryptography::Cose::CoseMultiSignMessage ^ DecodeMultiSign(cli::array <System::Byte> ^ cborPayload);
public static System.Security.Cryptography.Cose.CoseMultiSignMessage DecodeMultiSign (byte[] cborPayload);
static member DecodeMultiSign : byte[] -> System.Security.Cryptography.Cose.CoseMultiSignMessage
Public Shared Function DecodeMultiSign (cborPayload As Byte()) As CoseMultiSignMessage
參數
- cborPayload
- Byte[]
要解碼的位元組序列。
傳回
解碼的訊息。
例外狀況
cborPayload 為 null。
cborPayload 無法解碼為COSE_Sign訊息。
適用於
DecodeMultiSign(ReadOnlySpan<Byte>)
將 CBOR 承載解碼為COSE_Sign訊息。
public:
static System::Security::Cryptography::Cose::CoseMultiSignMessage ^ DecodeMultiSign(ReadOnlySpan<System::Byte> cborPayload);
public static System.Security.Cryptography.Cose.CoseMultiSignMessage DecodeMultiSign (ReadOnlySpan<byte> cborPayload);
static member DecodeMultiSign : ReadOnlySpan<byte> -> System.Security.Cryptography.Cose.CoseMultiSignMessage
Public Shared Function DecodeMultiSign (cborPayload As ReadOnlySpan(Of Byte)) As CoseMultiSignMessage
參數
- cborPayload
- ReadOnlySpan<Byte>
要解碼的位元組序列。
傳回
解碼的訊息。
例外狀況
cborPayload 無法解碼為COSE_Sign訊息。