HttpPipeline Class

Definition

Represents a primitive for sending HTTP requests and receiving responses extensible by adding HttpPipelinePolicy processing steps.

public class HttpPipeline
type HttpPipeline = class
Public Class HttpPipeline
Inheritance
HttpPipeline
Derived

Constructors

HttpPipeline(HttpPipelineTransport, HttpPipelinePolicy[], ResponseClassifier)

Creates a new instance of HttpPipeline with the provided transport, policies and response classifier.

Properties

ResponseClassifier

The ResponseClassifier instance used in this pipeline invocations.

Methods

CreateClientRequestIdScope(String)

Creates a scope in which all outgoing requests would use the provided

CreateHttpMessagePropertiesScope(IDictionary<String,Object>)

Creates a scope in which all HttpMessages would have provided properties.

CreateMessage()

Creates a new HttpMessage instance.

CreateMessage(RequestContext)
CreateMessage(RequestContext, ResponseClassifier)

Creates a new HttpMessage instance.

CreateRequest()

Creates a new Request instance.

Send(HttpMessage, CancellationToken)

Invokes the pipeline synchronously. After the task completes response would be set to the Response property.

SendAsync(HttpMessage, CancellationToken)

Invokes the pipeline asynchronously. After the task completes response would be set to the Response property.

SendRequest(Request, CancellationToken)

Invokes the pipeline synchronously with the provided request.

SendRequestAsync(Request, CancellationToken)

Invokes the pipeline asynchronously with the provided request.

Applies to