DynamicBinder 1.5.0
dotnet add package DynamicBinder --version 1.5.0
NuGet\Install-Package DynamicBinder -Version 1.5.0
<PackageReference Include="DynamicBinder" Version="1.5.0" />
paket add DynamicBinder --version 1.5.0
#r "nuget: DynamicBinder, 1.5.0"
// Install DynamicBinder as a Cake Addin #addin nuget:?package=DynamicBinder&version=1.5.0 // Install DynamicBinder as a Cake Tool #tool nuget:?package=DynamicBinder&version=1.5.0
This library allows you to dynamic access to object methods, properties, and fields
even if they are private members by Reflection technology.
You can access the both of object instance members and class static members by name
that specified string argument at runtime not compile time, or C# 4.0 "dynamic" syntax.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on DynamicBinder:
Repository | Stars |
---|---|
jsakamoto/Toolbelt.Blazor.I18nText
The class library that provides the ability to localize texts on your Blazor app!
|
v.1.5
- Enhance: Add "Object" property which expose the object that binding target.
- Fix bug: Can not extract class type object by DynamicBinder.
v.1.4
- Fix bug: Can not retrieve class type properties by DynamicBinder.
v.1.3
- Add avility of exposing nested private object graph.
v.1.2
- Add avility of caching System.Reflection.MemberInfo (use SetCache(disctionary) method)
- Add GetInfo(name) method on PropertyBinder and FieldBinder that returned System.Reflection.MemberInfo.
v.1.1
- Support base class members access.