Package version:

Class BaseRequestPolicyAbstract

The base class from which all request policies derive.

Hierarchy (view full)

Implements

Constructors

  • The main method to implement that manipulates a request/response.

    Parameters

    • _nextPolicy: RequestPolicy

      The next policy in the pipeline. Each policy is responsible for executing the next one if the request is to continue through the pipeline.

    • _options: RequestPolicyOptionsLike

      The options that can be passed to a given request policy.

    Returns BaseRequestPolicy

Properties

_nextPolicy: RequestPolicy

The next policy in the pipeline. Each policy is responsible for executing the next one if the request is to continue through the pipeline.

_options: RequestPolicyOptionsLike

The options that can be passed to a given request policy.

Methods

  • 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.

    Parameters

    • logLevel: HttpPipelineLogLevel

      The log level of this log.

    • message: string

      The message of this log.

    Returns void

  • Sends a network request based on the given web resource.

    Parameters

    • webResource: WebResourceLike

      A WebResourceLike that describes a HTTP request to be made.

    Returns Promise<HttpOperationResponse>

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

    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.