CoseHeaderValue.GetValueAsBytes 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
GetValueAsBytes() |
取得 CBOR 編碼的值做為位元組位元串。 |
GetValueAsBytes(Span<Byte>) |
取得 CBOR 編碼的值做為位元組位元串。 |
GetValueAsBytes()
取得 CBOR 編碼的值做為位元組位元串。
public:
cli::array <System::Byte> ^ GetValueAsBytes();
public byte[] GetValueAsBytes ();
member this.GetValueAsBytes : unit -> byte[]
Public Function GetValueAsBytes () As Byte()
傳回
Byte[]
譯碼的值做為位元組陣列。
例外狀況
值無法譯碼為位元組字串。
適用於
GetValueAsBytes(Span<Byte>)
取得 CBOR 編碼的值做為位元組位元串。
public:
int GetValueAsBytes(Span<System::Byte> destination);
public int GetValueAsBytes (Span<byte> destination);
member this.GetValueAsBytes : Span<byte> -> int
Public Function GetValueAsBytes (destination As Span(Of Byte)) As Integer
參數
傳回
寫入至 destination
的位元組數。
例外狀況
destination
太小而無法保存值。
值無法譯碼為位元組字串。