StorageBrowserPolicy class

StorageBrowserPolicy will handle differences between Node.js and browser runtime, including:

  1. Browsers cache GET/HEAD requests by adding conditional headers such as 'IF_MODIFIED_SINCE'. StorageBrowserPolicy is a policy used to add a timestamp query to GET/HEAD request URL thus avoid the browser cache.

  2. Remove cookie header for security

  3. Remove content-length header to avoid browsers warning

Extends

Constructors

StorageBrowserPolicy(RequestPolicy, RequestPolicyOptions)

Creates an instance of StorageBrowserPolicy.

Methods

sendRequest(WebResource)

Sends out request.

Inherited Methods

log(HttpPipelineLogLevel, string)

Attempt to log the provided message to the provided logger. If no logger was provided or if the log level does not meat the logger's threshold, then nothing will be logged.

shouldLog(HttpPipelineLogLevel)

Get whether or not a log with the provided log level should be logged.

Constructor Details

StorageBrowserPolicy(RequestPolicy, RequestPolicyOptions)

Creates an instance of StorageBrowserPolicy.

new StorageBrowserPolicy(nextPolicy: RequestPolicy, options: RequestPolicyOptions)

Parameters

nextPolicy
RequestPolicy

Method Details

sendRequest(WebResource)

Sends out request.

function sendRequest(request: WebResource): Promise<HttpOperationResponse>

Parameters

request
WebResource

Returns

Inherited Method Details

log(HttpPipelineLogLevel, string)

Attempt to log the provided message to the provided logger. If no logger was provided or if the log level does not meat the logger's threshold, then nothing will be logged.

function log(logLevel: HttpPipelineLogLevel, message: string)

Parameters

logLevel
HttpPipelineLogLevel

The log level of this log.

message

string

The message of this log.

Inherited From BaseRequestPolicy.log

shouldLog(HttpPipelineLogLevel)

Get whether or not a log with the provided log level should be logged.

function shouldLog(logLevel: HttpPipelineLogLevel): boolean

Parameters

logLevel
HttpPipelineLogLevel

The log level of the log that will be logged.

Returns

boolean

Whether or not a log with the provided log level should be logged.

Inherited From BaseRequestPolicy.shouldLog