Show / Hide Table of Contents

Interface IDecorator<T>

Defines a decorator that exposes the inner decorated type.

Namespace: Cuemon
Assembly: Cuemon.Core.dll
Syntax
public interface IDecorator<out T>
Type Parameters
Name Description
T

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

Properties

| Improve this Doc View Source

Inner

Gets the inner object of this decorator.

Declaration
T Inner { get; }
Property Value
Type Description
T

The inner object of this decorator.

Extension Methods

ObjectDecoratorExtensions.Adjust<T>(IDecorator<T>, Func<T, T>)

See Also

Decorator
Decorator<T>
  • Improve this Doc
  • View Source
In This Article
Back to top Copyright 2008-2022 Geekle. All rights reserved. Code with passion and love; deploy with confidence. 👨‍💻️🔥❤️🚀😎
Generated by DocFX