你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

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, ResponseClassifier)

Creates a new HttpMessage instance.

CreateMessage(RequestContext)
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