Interface IHeaderPropagation
MessageHandlers implementing this interface can propagate headers from an input message to an output message.
Namespace: Steeltoe.Integration.Handler
Assembly: Steeltoe.Integration.Abstractions.dll
Syntax
public interface IHeaderPropagation
Properties
| Edit this page View SourceNotPropagatedHeaders
Gets or sets the headers that should not be copied from inbound message if handler is configured to copy headers
Declaration
IList<string> NotPropagatedHeaders { get; set; }
Property Value
Type | Description |
---|---|
IList<System.String> |
Methods
| Edit this page View SourceAddNotPropagatedHeaders(String[])
Add headers that will not be copied from the inbound message if handler is configured to copy headers
Declaration
void AddNotPropagatedHeaders(params string[] headers)
Parameters
Type | Name | Description |
---|---|---|
System.String[] | headers | the headers to not copy |