HttpRequestRewindExtensions Class

Definition

Extension methods for enabling buffering in an HttpRequest.

public ref class HttpRequestRewindExtensions abstract sealed
public static class HttpRequestRewindExtensions
type HttpRequestRewindExtensions = class
Public Module HttpRequestRewindExtensions
Inheritance
HttpRequestRewindExtensions

Methods

EnableBuffering(HttpRequest)

Ensure the requestBody can be read multiple times. Normally buffers request bodies in memory; writes requests larger than 30K bytes to disk.

EnableBuffering(HttpRequest, Int32)

Ensure the requestBody can be read multiple times. Normally buffers request bodies in memory; writes requests larger than bufferThreshold bytes to disk.

EnableBuffering(HttpRequest, Int32, Int64)

Ensure the requestBody can be read multiple times. Normally buffers request bodies in memory; writes requests larger than bufferThreshold bytes to disk.

EnableBuffering(HttpRequest, Int64)

Ensure the requestBody can be read multiple times. Normally buffers request bodies in memory; writes requests larger than 30K bytes to disk.

Applies to