Table of Contents

Interface IDecorator<T>

Namespace
Cuemon
Assembly
Cuemon.Core.dll

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

ArgumentName

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

string ArgumentName { get; }

Property Value

String

The name of the argument from which this decorator originated.

Inner

Gets the inner object of this decorator.

T Inner { get; }

Property Value

T

The inner object of this decorator.

See Also