BrotliDecoder.Decompress 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將使用 Brotli 演算法壓縮的資料解壓縮。
public:
System::Buffers::OperationStatus Decompress(ReadOnlySpan<System::Byte> source, Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesConsumed, [Runtime::InteropServices::Out] int % bytesWritten);
public System.Buffers.OperationStatus Decompress (ReadOnlySpan<byte> source, Span<byte> destination, out int bytesConsumed, out int bytesWritten);
member this.Decompress : ReadOnlySpan<byte> * Span<byte> * int * int -> System.Buffers.OperationStatus
Public Function Decompress (source As ReadOnlySpan(Of Byte), destination As Span(Of Byte), ByRef bytesConsumed As Integer, ByRef bytesWritten As Integer) As OperationStatus
參數
- source
- ReadOnlySpan<Byte>
包含已壓縮資料的緩衝區。
- bytesConsumed
- Int32
從 source
讀取的位元組總數。
- bytesWritten
- Int32
寫入 destination
的位元組總數。
傳回
其中一個列舉值,其指出解壓縮作業的狀態。
備註
傳回值可以如下所示: - Donesource
成功且完全解壓縮。destination
- DestinationTooSmall:中的 destination
空間不足,無法解壓縮 source
。 - NeedMoreData:解壓縮動作至少需要一個字節才能完成解壓縮工作。 這個方法應該再次呼叫,並提供更多輸入來解壓縮。 - InvalidData:中的數據 source
無效,無法解壓縮。