RequestInterceptor Constructors

Definition

Overloads

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