AspectObjectDumper 1.2.0.5
dotnet add package AspectObjectDumper --version 1.2.0.5
NuGet\Install-Package AspectObjectDumper -Version 1.2.0.5
<PackageReference Include="AspectObjectDumper" Version="1.2.0.5" />
paket add AspectObjectDumper --version 1.2.0.5
#r "nuget: AspectObjectDumper, 1.2.0.5"
// Install AspectObjectDumper as a Cake Addin #addin nuget:?package=AspectObjectDumper&version=1.2.0.5 // Install AspectObjectDumper as a Cake Tool #tool nuget:?package=AspectObjectDumper&version=1.2.0.5
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 (e.g. PII) properties;
- 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.
* Build and tested with .NET 4.0, 4.5, 4.5.1. This package targets .NET 4.0.
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. |
-
- CommonServiceLocator (>= 1.3.0)
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.2.0.5 | 151 | 4/19/2015 |
1.2.0.3 | 64 | 4/9/2015 |
1.2.0.1 | 52 | 4/9/2015 |
1.2.0 | 23 | 4/7/2015 |
1.1.0.1 | 134 | 3/5/2015 |
1.0.3.7 | 58 | 3/4/2015 |
1.0.3.6 | 52 | 3/3/2015 |
1.0.3.5 | 60 | 3/3/2015 |
1.0.3.4 | 52 | 3/3/2015 |
1.0.3.3 | 54 | 3/3/2015 |
1.0.3.2 | 53 | 3/3/2015 |
1.0.3.1 | 54 | 3/3/2015 |
1.0.2.4 | 168 | 12/2/2014 |
1.0.2.2 | 117 | 10/24/2014 |
1.0.2.1 | 73 | 10/24/2014 |
1.0.1.2 | 73 | 10/23/2014 |
1.0.1.1 | 536 | 5/9/2014 |
1.0.1 | 59 | 5/9/2014 |
1.0.0.1 | 85 | 12/3/2013 |
1.0.0 | 70 | 12/3/2013 |
0.9.3 | 143 | 9/18/2013 |
0.9.2 | 79 | 9/15/2013 |
0.9.1 | 79 | 9/12/2013 |
In version 1.2.0.5:
* Improved dumping of generic collections.
* Added a public static class {{DumpFormat}} which allows to replace the default format strings for various bits of the dump.
* Small changes in the XML documentation comments.
* Added DumpFormat.TypeInfo property formatting the dump of values of type System.Reflection.Type.