IDecorator<T> Interface
Definition
Defines a decorator that exposes the inner wrapped type.
public interface IDecorator<out T>
Type Parameters
TThe 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. |