Class DecoratorDelegate<TType>

Defines the layout of functions used to apply proxies.

Inheritance
System.Object
DecoratorDelegate<TType>
Namespace: Solti.Utils.DI.Interfaces
Assembly: Solti.Utils.DI.Interfaces.dll
Syntax
public sealed class DecoratorDelegate<TType> : MulticastDelegate
Type Parameters
Name Description
TType

Constructors

DecoratorDelegate(Object, IntPtr)

Declaration
public DecoratorDelegate(object object, IntPtr method)
Parameters
Type Name Description
System.Object object
System.IntPtr method

Methods

BeginInvoke(IInjector, TType, AsyncCallback, Object)

Declaration
public virtual IAsyncResult BeginInvoke(IInjector scope, TType instance, AsyncCallback callback, object object)
Parameters
Type Name Description
IInjector scope
TType instance
System.AsyncCallback callback
System.Object object
Returns
Type Description
System.IAsyncResult

EndInvoke(IAsyncResult)

Declaration
public virtual TType EndInvoke(IAsyncResult result)
Parameters
Type Name Description
System.IAsyncResult result
Returns
Type Description
TType

Invoke(IInjector, TType)

Declaration
public virtual TType Invoke(IInjector scope, TType instance)
Parameters
Type Name Description
IInjector scope
TType instance
Returns
Type Description
TType
In This Article
Back to top Generated by DocFX