Table of Contents

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

input TIn

The original input value.

output TOut

The output from the next layer.

Returns

TOut

The transformed output value.

Extension Methods