ProxyFoo 0.2.2
dotnet add package ProxyFoo --version 0.2.2
NuGet\Install-Package ProxyFoo -Version 0.2.2
<PackageReference Include="ProxyFoo" Version="0.2.2" />
paket add ProxyFoo --version 0.2.2
#r "nuget: ProxyFoo, 0.2.2"
// Install ProxyFoo as a Cake Addin #addin nuget:?package=ProxyFoo&version=0.2.2 // Install ProxyFoo as a Cake Tool #tool nuget:?package=ProxyFoo&version=0.2.2
ProxyFoo is a library for the .NET Framework to facilitate creating high-performance proxies for Duck casting, null safe wrappers, and other uses
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40-client is compatible. |
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
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.