CenterCLR.SgmlReader 2014.12.7.2

There is a newer version of this package available.
See the version list below for details.
dotnet add package CenterCLR.SgmlReader --version 2014.12.7.2
NuGet\Install-Package CenterCLR.SgmlReader -Version 2014.12.7.2
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="CenterCLR.SgmlReader" Version="2014.12.7.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CenterCLR.SgmlReader --version 2014.12.7.2
#r "nuget: CenterCLR.SgmlReader, 2014.12.7.2"
#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 CenterCLR.SgmlReader as a Cake Addin
#addin nuget:?package=CenterCLR.SgmlReader&version=2014.12.7.2

// Install CenterCLR.SgmlReader as a Cake Tool
#tool nuget:?package=CenterCLR.SgmlReader&version=2014.12.7.2

SgmlReader for Portable Class Library.
SgmlReader is "SGML" markup language parser, and derived from System.Xml.XmlReader in .NET CLR.
But, most popular usage the "HTML" parser. (It's scraper!!)

/* Setup SgmlReader */
var sgmlReader = new SgmlReader(stream);
/* create document */
var document = XDocument.Load(sgmlReader);

Done!

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2014.12.7.3 213 12/7/2014
2014.12.7.2 62 12/7/2014
2014.12.7.1 56 12/7/2014

2014.12.7.2:
Direct handling the Stream class.
Initial parameter is set of Html parse mode.
2014.12.7.1:
Namespace changed "CenterCLR.Sgml".
More easy usage, HTML parse is default mode.
Native store app library included.
1.8.11.2014:
Initial release.