vm.Aspects.Diagnostics.ObjectTextDumper
2.0.2
See the version list below for details.
Install-Package vm.Aspects.Diagnostics.ObjectTextDumper -Version 2.0.2
dotnet add package vm.Aspects.Diagnostics.ObjectTextDumper --version 2.0.2
<PackageReference Include="vm.Aspects.Diagnostics.ObjectTextDumper" Version="2.0.2" />
paket add vm.Aspects.Diagnostics.ObjectTextDumper --version 2.0.2
#r "nuget: vm.Aspects.Diagnostics.ObjectTextDumper, 2.0.2"
// Install vm.Aspects.Diagnostics.ObjectTextDumper as a Cake Addin
#addin nuget:?package=vm.Aspects.Diagnostics.ObjectTextDumper&version=2.0.2
// Install vm.Aspects.Diagnostics.ObjectTextDumper as a Cake Tool
#tool nuget:?package=vm.Aspects.Diagnostics.ObjectTextDumper&version=2.0.2
Easy to integrate and easy to use component that dumps the value of an arbitrary .NET object in an easy to read text form.
Helpful for debugging and logging purposes.
Features:
* The dump output is separated from the targeted dump media by the familiar TextWriter interface
* The programmer can dump the value of any type of object: primitive and enum types (including those marked with FlagsAttribute), custom classes, struct-s, collections, etc.
* For complex type objects (classes and structs) the dumper outputs the names and the values of the properties
* The dump is recursive: the complex members of the dumped object are dumped indented
* Dumps the elements of sequences (arrays, lists, dictionaries, etc.)
* Handles circular references
* The developers can easily customize various aspects of the dump by using an attribute (DumpAttribute) on the classes and their members, such as:
- the order in which the properties are dumped
- formatting of the property names and/or values
- suppressing the dump of some uninteresting properties
- masking the values of sensitive properties (e.g. PII)
- the depth of the recursion into complex members
- the maximum number of dumped elements of sequence properties
* The dumper picks the customization attributes also from buddy classes declared with MetadataTypeAttribute
* Even if the class doesn't have any attributes, the programmer can still pass a metadata class as a separate parameter to the dumping method. This allows for control over the dump of BCL and third party classes
* Built and tested with .NET 4.5.2, 4.6.2, 4.7.2, .NET Standard 2.0
For more information see the documentation at https://github.com/vmelamed/vm/blob/master/Aspects/Diagnostics/ObjectDumper.md.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
2.0.3-beta.2 | 1,932 | 9/3/2018 |
2.0.3-beta.1 | 383 | 9/3/2018 |
2.0.2 | 3,090 | 8/6/2018 |
2.0.2-beta-02 | 525 | 8/5/2018 |
2.0.2-beta-01 | 506 | 8/5/2018 |
2.0.1 | 641 | 7/26/2018 |
2.0.0 | 573 | 7/26/2018 |
2.0.0-beta01 | 588 | 7/9/2018 |
Note that this package derives from the package AspectObjectDumper v.1.10.2.
Removed the dependency on the Common Service Locator.
Built for .NET Standard 2.0
Renamed the package to comply with a more natural naming scheme for the entire set of vm.Aspects packages.
Changes in the documentation.