PipelinePolicy.Process Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Process the provided PipelineMessage according to the intended purpose of this PipelinePolicyinstance. Derived types must pass control to the next PipelinePolicy in the pipeline by calling ProcessNext(PipelineMessage, IReadOnlyList<PipelinePolicy>, Int32).
public abstract void Process (System.ClientModel.Primitives.PipelineMessage message, System.Collections.Generic.IReadOnlyList<System.ClientModel.Primitives.PipelinePolicy> pipeline, int currentIndex);
abstract member Process : System.ClientModel.Primitives.PipelineMessage * System.Collections.Generic.IReadOnlyList<System.ClientModel.Primitives.PipelinePolicy> * int -> unit
Public MustOverride Sub Process (message As PipelineMessage, pipeline As IReadOnlyList(Of PipelinePolicy), currentIndex As Integer)
Parameters
- message
- PipelineMessage
The PipelineMessage to process.
- pipeline
- IReadOnlyList<PipelinePolicy>
The collection of PipelinePolicy instances in the ClientPipeline instance whose Send(PipelineMessage) method was called to invoke this method.
- currentIndex
- Int32
The index of this policy in the
pipeline
policy list. This value should be passed to
ProcessNext(PipelineMessage, IReadOnlyList<PipelinePolicy>, Int32)
to pass control to the next policy in the pipeline.
Applies to
Azure SDK for .NET