ProxyFoo 0.3.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package ProxyFoo --version 0.3.0
                    
NuGet\Install-Package ProxyFoo -Version 0.3.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ProxyFoo" Version="0.3.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ProxyFoo" Version="0.3.0" />
                    
Directory.Packages.props
<PackageReference Include="ProxyFoo" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ProxyFoo --version 0.3.0
                    
#r "nuget: ProxyFoo, 0.3.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=ProxyFoo&version=0.3.0
                    
Install as a Cake Addin
#tool nuget:?package=ProxyFoo&version=0.3.0
                    
Install as a Cake Tool

ProxyFoo is a library for the .NET Framework to facilitate creating high-performance proxies for Duck casting, null safe wrappers, method interception, and other uses

Product Compatible and additional computed target framework versions.
.NET Framework net40-client is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on ProxyFoo:

Package Downloads
NbpClient.Autofac

Nbp Client Autofac extension

NbpClient.Ninject

Nbp Client Ninject extension

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.4.2 2,273 3/11/2017
0.4.1 1,108 3/10/2017
0.4.0 1,667 7/11/2016
0.3.2 1,446 5/21/2016
0.3.1 1,433 3/15/2016
0.3.0 2,126 9/27/2015
0.2.2 10,021 4/22/2014
0.2.1 1,317 3/14/2014
0.2.0 1,361 3/13/2014
0.1.0 1,655 2/28/2014

v0.3.0:
- Add new intercept proxy mixin
v0.2.2:
- Safe proxies test for method exists on duck proxies (or any real subject that supports it via IMethodExistsProxyMeta)
- Safe proxies will be created for any type: any value type can be returned and concrete classes return null (can't proxy them, but you can always duck them to an interface then safe proxy the duck)
- Fix threading issue for method exists
v0.2.1:
- Fix peverify fails if members are repeated in multiple subject interfaces.
- Fix proxy member generation for property indexers.
v0.2.0:
- Add support for out/ref parameters and recursive type definitions.