Table of Contents

IDecorator<T> Interface

Definition

Namespace
Cuemon
Assemblies
Cuemon.Kernel.dll
Source
src/Cuemon.Kernel/IDecorator.cs

Defines a decorator that exposes the inner wrapped type.

public interface IDecorator<out T>

Type Parameters

T

The type of the inner wrapped object. This type parameter is covariant. That is, you can use either the type you specified or any type that is more derived.

Properties

Name Description
ArgumentName

Gets the name of the argument from which this decorator originated.

Inner

Gets the inner object of this decorator.

See Also