├── CallAdapter.cs ├── DefaultArgumentHandler.cs ├── DefaultMethodEmitter.cs ├── DefaultProxyMethodBuilder.cs ├── IProxyCache.cs ├── Interceptor.cs ├── InterceptorHandler.cs ├── Interfaces ├── IArgumentHandler.cs ├── IInterceptor.cs ├── IInvokeWrapper.cs ├── IMethodBodyEmitter.cs ├── IProxy.cs ├── IProxyMethodBuilder.cs └── IWithTarget.cs ├── InvocationHandler.cs ├── InvocationInfo.cs ├── LinFu.DynamicProxy.Silveright.csproj ├── LinFu.DynamicProxy.Silverlight.sln ├── LinFu.DynamicProxy.VS2005.sln ├── LinFu.DynamicProxy.VS2008.sln ├── LinFu.DynamicProxy.VS2010.sln ├── LinFu.DynamicProxy.csproj ├── LinFu.snk ├── Properties └── AssemblyInfo.cs ├── ProxyCache.cs ├── ProxyCacheEntry.cs ├── ProxyDummy.cs ├── ProxyFactory.cs ├── ProxyImplementor.cs ├── ProxyObjectReference.cs ├── README ├── StindMap.cs └── TypeExtensions.cs /CallAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/CallAdapter.cs -------------------------------------------------------------------------------- /DefaultArgumentHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/DefaultArgumentHandler.cs -------------------------------------------------------------------------------- /DefaultMethodEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/DefaultMethodEmitter.cs -------------------------------------------------------------------------------- /DefaultProxyMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/DefaultProxyMethodBuilder.cs -------------------------------------------------------------------------------- /IProxyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/IProxyCache.cs -------------------------------------------------------------------------------- /Interceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/Interceptor.cs -------------------------------------------------------------------------------- /InterceptorHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/InterceptorHandler.cs -------------------------------------------------------------------------------- /Interfaces/IArgumentHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/Interfaces/IArgumentHandler.cs -------------------------------------------------------------------------------- /Interfaces/IInterceptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/Interfaces/IInterceptor.cs -------------------------------------------------------------------------------- /Interfaces/IInvokeWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/Interfaces/IInvokeWrapper.cs -------------------------------------------------------------------------------- /Interfaces/IMethodBodyEmitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/Interfaces/IMethodBodyEmitter.cs -------------------------------------------------------------------------------- /Interfaces/IProxy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/Interfaces/IProxy.cs -------------------------------------------------------------------------------- /Interfaces/IProxyMethodBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/Interfaces/IProxyMethodBuilder.cs -------------------------------------------------------------------------------- /Interfaces/IWithTarget.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/Interfaces/IWithTarget.cs -------------------------------------------------------------------------------- /InvocationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/InvocationHandler.cs -------------------------------------------------------------------------------- /InvocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/InvocationInfo.cs -------------------------------------------------------------------------------- /LinFu.DynamicProxy.Silveright.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/LinFu.DynamicProxy.Silveright.csproj -------------------------------------------------------------------------------- /LinFu.DynamicProxy.Silverlight.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/LinFu.DynamicProxy.Silverlight.sln -------------------------------------------------------------------------------- /LinFu.DynamicProxy.VS2005.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/LinFu.DynamicProxy.VS2005.sln -------------------------------------------------------------------------------- /LinFu.DynamicProxy.VS2008.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/LinFu.DynamicProxy.VS2008.sln -------------------------------------------------------------------------------- /LinFu.DynamicProxy.VS2010.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/LinFu.DynamicProxy.VS2010.sln -------------------------------------------------------------------------------- /LinFu.DynamicProxy.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/LinFu.DynamicProxy.csproj -------------------------------------------------------------------------------- /LinFu.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/LinFu.snk -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ProxyCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/ProxyCache.cs -------------------------------------------------------------------------------- /ProxyCacheEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/ProxyCacheEntry.cs -------------------------------------------------------------------------------- /ProxyDummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/ProxyDummy.cs -------------------------------------------------------------------------------- /ProxyFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/ProxyFactory.cs -------------------------------------------------------------------------------- /ProxyImplementor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/ProxyImplementor.cs -------------------------------------------------------------------------------- /ProxyObjectReference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/ProxyObjectReference.cs -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /StindMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/StindMap.cs -------------------------------------------------------------------------------- /TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Pathfoundry-PTY-LTD/LinFu.DynamicProxy/HEAD/TypeExtensions.cs --------------------------------------------------------------------------------