ProxyFoo 0.3.0
See the version list below for details.
dotnet add package ProxyFoo --version 0.3.0
NuGet\Install-Package ProxyFoo -Version 0.3.0
<PackageReference Include="ProxyFoo" Version="0.3.0" />
paket add ProxyFoo --version 0.3.0
#r "nuget: ProxyFoo, 0.3.0"
// Install ProxyFoo as a Cake Addin #addin nuget:?package=ProxyFoo&version=0.3.0 // Install ProxyFoo as a Cake Tool #tool nuget:?package=ProxyFoo&version=0.3.0
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 | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40-client is compatible. |
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.
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.