Show / Hide Table of Contents

Interface IProxyFactory<TProxy, TTarget>

Interface for proxy objects (type safe version)

Inherited Members
IProxyFactory.CreateProxyObject(Object)
IProxyFactory.TargetType
IProxyFactory.ProxyType
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public interface IProxyFactory<TProxy, TTarget> : IProxyFactory where TProxy : class where TTarget : class
Type Parameters
TProxy

The type of the proxy.

TTarget

The type of the target.

Methods

CreateProxyObject(TTarget)

Takes an instance of a target object and returns a proxy object wrapping it

Declaration
TProxy CreateProxyObject(TTarget target)
Parameters
TTarget target

Returns
TProxy

Back to top Built by Itinero, MIT licensed.