Ma.CustomParser 2.0.0

dotnet add package Ma.CustomParser --version 2.0.0
NuGet\Install-Package Ma.CustomParser -Version 2.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="2.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Ma.CustomParser --version 2.0.0
#r "nuget: Ma.CustomParser, 2.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=2.0.0

// Install Ma.CustomParser as a Cake Tool
#tool nuget:?package=Ma.CustomParser&version=2.0.0

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 Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.0 174 5/18/2023
1.1.0 783 11/22/2018
1.0.0 941 10/7/2017

Migrate to .Net 7