Class Decorator<TService, TImpl>
A Decorator<TService> that has a specific implementation.
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
Namespace: IRM.Dependencies
Assembly: IRM.dll
Syntax
public class Decorator<TService, TImpl> : Decorator<TService> where TImpl : class, TService
Type Parameters
TService
The service to decorate. |
TImpl
The implementation to decorate. |
Constructors
Decorator(TImpl)
Initializes a new instance of the Decorator<TService, TImpl> class.
Declaration
public Decorator(TImpl instance)
Parameters
TImpl
instance
The implementation instance to decorate. |