Table of Contents

Interface IDecorator<T>

Namespace
System.Web.Http.Services
Assembly
System.Web.Http.dll

Defines a decorator that exposes the inner decorated object.

public interface IDecorator<out T>

Type Parameters

T

This 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