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

RequestInterceptor Constructors

Definition

Overloads

Name Description
RequestInterceptor()

Initializes a new instance of RequestInterceptor.

RequestInterceptor(BatchRequestModificationInterceptHandler)

Initializes a new instance of RequestInterceptor that calls a given BatchRequestModificationInterceptHandler.

RequestInterceptor()

Source:
Interceptors.cs

Initializes a new instance of RequestInterceptor.

public RequestInterceptor();
Public Sub New ()

Applies to

RequestInterceptor(BatchRequestModificationInterceptHandler)

Source:
Interceptors.cs

Initializes a new instance of RequestInterceptor that calls a given BatchRequestModificationInterceptHandler.

public RequestInterceptor(Microsoft.Azure.Batch.Protocol.BatchRequestModificationInterceptHandler interceptor);
new Microsoft.Azure.Batch.Protocol.RequestInterceptor : Microsoft.Azure.Batch.Protocol.BatchRequestModificationInterceptHandler -> Microsoft.Azure.Batch.Protocol.RequestInterceptor
Public Sub New (interceptor As BatchRequestModificationInterceptHandler)

Parameters

interceptor
BatchRequestModificationInterceptHandler

A delegate that will be allowed to inspect, modify or ignore a BatchRequest.

Applies to