Enum MessagePipelineResult
Defines the actions than need to be done with the intercepted message after it has been processed by a pipeline component.
Namespace: Nevatech.Vsb.Repository.Processing
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public enum MessagePipelineResult
Fields
Name | Description |
---|---|
Continue | Message pipeline execution should continue as normal, message can be sent to the recipient. |
Reply | Normal message processing should be stopped and message should be immediately returned to the sender. This action is very similar to Return action with the only difference is that response message pipeline will NOT be executed and message will be sent directly to the channel stack. |
Return | Normal message processing should be stopped and message should be sent to the beginning of the inbound response message pipeline. This property does fully affect the execution of the inbound request pipeline only and normal (not callback) operations only. |