Modrinth.NET Library
The Modrinth.NET library, developed by LFInteractive LLC, provides a set of functionalities to interact with the Modrinth API. Modrinth is a platform that hosts Minecraft-related content such as mods,
Installation
To use the Modrinth.NET library in your project, you can add it as a NuGet package using the NuGet Package Manager or the Package Manager Console in Visual Studio. The package name is Modrinth.NET
.
Usage
The library provides a ModrinthClient
class to interact with the Modrinth API. Here are some of the key functionalities provided by the library:
Search for Mods:
You can perform searches for mods based on various criteria using the ModrinthSearchQuery
and FacetBuilder
classes.
Retrieve Project Details:
You can fetch details about a specific project, such as versions, dependencies, and files.
Retrieve User Information:
You can get information about a Modrinth user based on their username and access their projects.
Retrieve Category Information:
You can obtain a list of all Modrinth categories.
FacetBuilder
The FacetBuilder
class is a utility class within the Modrinth.NET library, responsible for building facets to be used in Modrinth's Search API. Facets are used to filter search results based on specific criteria, such as modloaders, categories, versions, licenses, and project types.
Constructors
public FacetBuilder()
public FacetBuilder()
Initializes a new instance of the FacetBuilder
class.
Properties
internal bool IsEmpty { get; private set; }
internal bool IsEmpty { get; private set; }
Gets a value indicating whether the facet builder is empty or not. An empty facet builder means that no facets have been added yet.
Methods
public FacetBuilder AddModloaders(params ModLoaders[] loaders)
public FacetBuilder AddModloaders(params ModLoaders[] loaders)
Adds a facet for modloaders to the facet builder. You can add multiple modloaders in one call, which will be considered an 'OR' request. Alternatively, you can add them individually for an 'AND' request.
Parameters:
loaders
: A list of Minecraft mod loaders represented by theModLoaders
enumeration.
public FacetBuilder AddCategories(params string[] categories)
public FacetBuilder AddCategories(params string[] categories)
Adds a facet for categories to the facet builder. You can add multiple categories in one call, which will be considered an 'OR' request. Alternatively, you can add them individually for an 'AND' request.
Parameters:
categories
: A list of categories represented by strings.
public FacetBuilder AddVersions(params string[] versions)
public FacetBuilder AddVersions(params string[] versions)
Adds a facet for Minecraft versions to the facet builder. You can add multiple versions in one call, which will be considered an 'OR' request. Alternatively, you can add them individually for an 'AND' request.
Parameters:
versions
: A list of Minecraft versions represented by strings.
public FacetBuilder AddLicenses(params string[] licenses)
public FacetBuilder AddLicenses(params string[] licenses)
Adds a facet for licenses to the facet builder. You can add multiple licenses in one call, which will be considered an 'OR' request. Alternatively, you can add them individually for an 'AND' request.
Parameters:
licenses
: A list of license types represented by strings.
public FacetBuilder AddProjectTypes(params ModrinthProjectTypes[] types)
public FacetBuilder AddProjectTypes(params ModrinthProjectTypes[] types)
Adds a facet for project types to the facet builder. You can add multiple project types in one call, which will be considered an 'OR' request. Alternatively, you can add them individually for an 'AND' request.
Parameters:
types
: A list of project types represented by theModrinthProjectTypes
enumeration.
public FacetBuilder AddProjectTypes(params string[] types)
public FacetBuilder AddProjectTypes(params string[] types)
Adds a facet for project types to the facet builder. You can add multiple project types in one call, which will be considered an 'OR' request. Alternatively, you can add them individually for an 'AND' request.
Parameters:
types
: A list of project types represented by strings.
public string Build()
public string Build()
Builds and returns the finalized string output of the facet builder. The built string can be used in Modrinth's Search API to filter search results based on the specified facets.
Returns: A string representing the built facets.
public override string ToString()
public override string ToString()
Overrides the ToString()
method and returns the same output as the Build()
method. This is for convenience when converting the facet builder to a string representation.
Returns: A string representing the built facets.
Example:
License
The Modrinth.NET library is licensed under the GNU General Public License (GPL) version 3.0. For detailed information about the license terms, please visit the GPL-3.0 License Text page.
Please note that the Modrinth.NET library interacts with Modrinth's API, and you may need to comply with Modrinth's terms of use and API usage policies when integrating it into your applications. For further details on how to use the Modrinth.NET library and its functionalities, refer to the links provided in the documentation and the official Modrinth API documentation.
Last updated
Was this helpful?