BrotliDecoder 结构

定义

提供未分配的高性能 Brotli 解压缩方法。 方法在不使用 BrotliStream 实例的情况下以单次传递的形式解压缩。

public value class BrotliDecoder : IDisposable
public struct BrotliDecoder : IDisposable
type BrotliDecoder = struct
    interface IDisposable
Public Structure BrotliDecoder
Implements IDisposable
继承
BrotliDecoder
实现

方法

Decompress(ReadOnlySpan<Byte>, Span<Byte>, Int32, Int32)

解压缩用 Brotli 算法压缩的数据。

Dispose()

释放由当前 Brotli 解码器实例使用的所有资源。

TryDecompress(ReadOnlySpan<Byte>, Span<Byte>, Int32)

尝试解压缩用 Brotli 算法压缩的数据。

适用于