Ma.CustomParser
9.0.0
dotnet add package Ma.CustomParser --version 9.0.0
NuGet\Install-Package Ma.CustomParser -Version 9.0.0
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="Ma.CustomParser" Version="9.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ma.CustomParser --version 9.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Ma.CustomParser, 9.0.0"
#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 Ma.CustomParser as a Cake Addin #addin nuget:?package=Ma.CustomParser&version=9.0.0 // Install Ma.CustomParser as a Cake Tool #tool nuget:?package=Ma.CustomParser&version=9.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Ma.CustomParser
Custom parsers to help to parse HTML and JSON content.
Implement your HTML parser classes from IHtmlParser<>
or IAsyncHtmlParser<>
interface.
Implement your Json parser classes from IJsonParser<>
or IAsyncJsonParser<>
interface.
Add following method to the project where you have html or json parser classes, and call it when program starts to register all parsers:
/// <summary>
/// Register all custom Json and HTML parser classes.
/// </summary>
public static void RegisterCustomParsers(ICustomParser parser)
{
var customParserInterfaceTypes = new List<Type>
{
typeof(IHtmlParser<>),
typeof(IAsyncHtmlParser<>),
typeof(IJsonParser<>),
typeof(IAsyncJsonParser<>)
};
// Get all custom parser which implement above interfaces.
var itemParserTypes = Assembly
.GetExecutingAssembly()
.GetTypes()
.Where(m => m.GetInterfaces().Any(i => i.IsGenericType
&& customParserInterfaceTypes.Contains(i.GetGenericTypeDefinition())));
foreach (Type itemParserType in itemParserTypes)
{
dynamic itemParser = Activator.CreateInstance(itemParserType);
parser.Configuration.AddParser(itemParser);
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net9.0 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- HtmlAgilityPack (>= 1.11.71)
- Microsoft.CSharp (>= 4.7.0)
- System.Data.DataSetExtensions (>= 4.5.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Upgrade to .Net 9