Interface IDecorator<T>
Defines a decorator that exposes the inner decorated object.
public interface IDecorator<out T>
Type Parameters
TThis type parameter is covariant. That is, you can use either the type you specified or any type that is more derived. For more information about covariance and contravariance, see .
Properties
Inner
Gets the inner object.
T Inner { get; }
Property Value
- T