Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
System.Net.Http.DecompressionHandler.DeflateDecompressedContent Class Referencesealed

Classes

class  ZLibOrDeflateStream
 

Public Member Functions

 DeflateDecompressedContent (HttpContent originalContent)
 
void Dispose ()
 
Task< stringReadAsStringAsync ()
 
Task< stringReadAsStringAsync (CancellationToken cancellationToken)
 
Task< byte[]> ReadAsByteArrayAsync ()
 
Task< byte[]> ReadAsByteArrayAsync (CancellationToken cancellationToken)
 
Stream ReadAsStream ()
 
Stream ReadAsStream (CancellationToken cancellationToken)
 
Task< StreamReadAsStreamAsync ()
 
Task< StreamReadAsStreamAsync (CancellationToken cancellationToken)
 
void CopyTo (Stream stream, TransportContext? context, CancellationToken cancellationToken)
 
Task CopyToAsync (Stream stream)
 
Task CopyToAsync (Stream stream, CancellationToken cancellationToken)
 
Task CopyToAsync (Stream stream, TransportContext? context)
 
Task CopyToAsync (Stream stream, TransportContext? context, CancellationToken cancellationToken)
 
Task LoadIntoBufferAsync ()
 
Task LoadIntoBufferAsync (long maxBufferSize)
 

Protected Member Functions

override Stream GetDecompressedStream (Stream originalStream)
 
override void SerializeToStream (Stream stream, TransportContext context, CancellationToken cancellationToken)
 
virtual void SerializeToStream (Stream stream, TransportContext? context, CancellationToken cancellationToken)
 
override Task SerializeToStreamAsync (Stream stream, TransportContext context)
 
override async Task SerializeToStreamAsync (Stream stream, TransportContext context, CancellationToken cancellationToken)
 
Task SerializeToStreamAsync (Stream stream, TransportContext? context)
 
virtual Task SerializeToStreamAsync (Stream stream, TransportContext? context, CancellationToken cancellationToken)
 
override Stream CreateContentReadStream (CancellationToken cancellationToken)
 
override Task< StreamCreateContentReadStreamAsync (CancellationToken cancellationToken)
 
virtual Task< StreamCreateContentReadStreamAsync ()
 
override void Dispose (bool disposing)
 

Package Functions

override Stream TryCreateContentReadStream ()
 
override bool TryComputeLength (out long length)
 
bool TryGetBuffer (out ArraySegment< byte > buffer)
 
byte[] ReadBufferedContentAsByteArray ()
 
Stream TryReadAsStream ()
 
ValueTask InternalCopyToAsync (Stream stream, TransportContext context, CancellationToken cancellationToken)
 
void LoadIntoBuffer (long maxBufferSize, CancellationToken cancellationToken)
 
Task LoadIntoBufferAsync (CancellationToken cancellationToken)
 
Task LoadIntoBufferAsync (long maxBufferSize, CancellationToken cancellationToken)
 
long? GetComputedOrBufferLength ()
 

Static Package Functions

static string ReadBufferAsString (ArraySegment< byte > buffer, HttpContentHeaders headers)
 
static bool StreamCopyExceptionNeedsWrapping (Exception e)
 
static Exception WrapStreamCopyException (Exception e)
 

Static Package Attributes

static readonly Encoding DefaultStringEncoding = Encoding.UTF8
 

Properties

override bool AllowDuplex [get]
 
HttpContentHeaders Headers [get]
 
bool IsBuffered [get]
 

Private Member Functions

async ValueTask< StreamCreateContentReadStreamAsyncCore (bool async, CancellationToken cancellationToken)
 
string ReadBufferedContentAsString ()
 
async Task LoadIntoBufferAsyncCore (Task serializeToStreamTask, MemoryStream tempBuffer)
 
bool CreateTemporaryBuffer (long maxBufferSize, out MemoryStream tempBuffer, out Exception error)
 
MemoryStream CreateMemoryStream (long maxBufferSize, out Exception error)
 
void CheckDisposed ()
 
void CheckTaskNotNull (Task task)
 

Static Private Member Functions

static Exception GetStreamCopyException (Exception originalException)
 
static int GetPreambleLength (ArraySegment< byte > buffer, Encoding encoding)
 
static bool TryDetectEncoding (ArraySegment< byte > buffer, [NotNullWhen(true)] out Encoding encoding, out int preambleLength)
 
static bool BufferHasPrefix (ArraySegment< byte > buffer, byte[] prefix)
 
static async Task< TResultWaitAndReturnAsync< TState, TResult > (Task waitTask, TState state, Func< TState, TResult > returnFunc)
 
static Exception CreateOverCapacityException (int maxBufferSize)
 

Private Attributes

readonly HttpContent _originalContent
 
bool _contentConsumed
 
HttpContentHeaders _headers
 
MemoryStream _bufferedContent
 
object _contentReadStream
 
bool _disposed
 
bool _canCalculateLength
 

Detailed Description

Definition at line 137 of file DecompressionHandler.cs.


The documentation for this class was generated from the following file: