Table of Contents

Delegate Decorator<TIn, TOut>.BeforeTransform

Namespace
PatternKit.Structural.Decorator
Assembly
PatternKit.Core.dll

Delegate for transforming the input before it reaches the next layer.

public delegate TIn Decorator<TIn, TOut>.BeforeTransform(TIn input)

Parameters

input TIn

The original input value.

Returns

TIn

The transformed input value.