Gepsio 2.1.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package Gepsio --version 2.1.0.7
NuGet\Install-Package Gepsio -Version 2.1.0.7
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Gepsio" Version="2.1.0.7" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Gepsio --version 2.1.0.7
#r "nuget: Gepsio, 2.1.0.7"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Gepsio as a Cake Addin
#addin nuget:?package=Gepsio&version=2.1.0.7

// Install Gepsio as a Cake Tool
#tool nuget:?package=Gepsio&version=2.1.0.7

Gepsio is a .NET-based document object model for XBRL documents. Load your XBRL document with the XbrlDocument class and work with your XBRL document exposed as a set of .NET classes with a variety of properties and methods. Loaded XBRL documents are automatically validated against the information against the XBRL specification, and exceptions are thrown when invalid XBRL documents are loaded. The Gepsio code base is unit tested using the XBRL-CONF-CR3-2007-03-05 unit tests designed by the XBRL organization.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has 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.1.0.17 1,253 6/5/2022
2.1.0.16 2,138 4/1/2020
2.1.0.15 1,174 1/1/2020
2.1.0.14 2,159 8/4/2018
2.1.0.13 1,453 7/8/2018
2.1.0.12 1,488 6/2/2018
2.1.0.11 3,553 8/25/2017
2.1.0.10 2,873 8/1/2015
2.1.0.9 1,746 5/2/2015
2.1.0.8 2,279 11/6/2014
2.1.0.7 3,243 9/15/2013
2.1.0.6 3,281 9/10/2012

The Sep 2013 CTP offers two high-level improvements from the previous CTP:

1.Dramatically Improved Load Times: Calls to XbrlDocument.Load() for large, real-world XBRL instances will enjoy a dramatic decrease in execution times, thanks to a series of patches that turn some of the internal lists, and associated linear lookups, to dictionaries that use more efficient lookup methods during document validations. XBRL instances that were taking more than 20 seconds to load now load in about eight seconds, and more load time improvements are planned!

2.New Design For Reporting Document Validity: The XbrlException method used in previous CTPs to report document validation errors has been replaced with a new XbrlDocument property called IsValid as well as an XbrlDocument collection called ValidationErrors that will report on all of the validation errors found in an XBRL instance. The blog post at http://gepsio.wordpress.com/2013/06/07/new-document-validation-design-shipping-in-next-ctp/ contains detailed information on this new design.