Delegate Decorator<TIn, TOut>.AfterTransform
- Namespace
- PatternKit.Structural.Decorator
- Assembly
- PatternKit.Core.dll
Delegate for transforming the output after it returns from the next layer.
public delegate TOut Decorator<TIn, TOut>.AfterTransform(TIn input, TOut output)
Parameters
inputTInThe original input value.
outputTOutThe output from the next layer.
Returns
- TOut
The transformed output value.
- Extension Methods