https://github.com/nickelc/modio.net
Modio.NET - A mod.io API Client Library for .NET
https://github.com/nickelc/modio.net
dotnet-core modding modio
Last synced: 5 months ago
JSON representation
Modio.NET - A mod.io API Client Library for .NET
- Host: GitHub
- URL: https://github.com/nickelc/modio.net
- Owner: nickelc
- License: apache-2.0
- Created: 2020-02-29T21:53:23.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-08-02T22:28:24.000Z (11 months ago)
- Last Synced: 2025-12-10T23:37:35.666Z (6 months ago)
- Topics: dotnet-core, modding, modio
- Language: C#
- Homepage:
- Size: 200 KB
- Stars: 22
- Watchers: 2
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# :package: Modio.NET - mod.io API Client Library for .NET
![License][license-badge]
[![Workflow Status][workflow-badge]][actions-url]
[license-badge]: https://img.shields.io/badge/license-MIT%2FApache--2.0-blue
[workflow-badge]: https://github.com/nickelc/modio.net/workflows/CI/badge.svg
[actions-url]: https://github.com/nickelc/modio.net/actions?query=workflow%3ACI
### Examples
```csharp
using Modio;
using Modio.Filters;
var client = new Client(new Credentials("api-key"/*, "token"*/));
// Get game, mod and file objects
var game = await client.Games[5].Get();
var mod = await client.Games[5].Mods[110].Get();
var file = await client.Games[5].Mods[110].Files[395].Get();
// _limit=10&_offset=10
var filter = Filter.WithLimit(10).Offset(10);
// id-in=5,34,51&_sort=-id
var filter = GameFilter.Id.In(5, 34, 51)
.And(GameFilter.Id.Desc());
IAsyncEnumerable games = client.Games.Search(filter).ToEnumerable();
await foreach (var game in games) {
Console.WriteLine(game.Name);
}
// _q=balance&_limit=5&_sort=rating
var filter = ModFilter.FullText.Eq("balance")
.Limit(5)
.And(ModFilter.Rating.Desc());
IReadOnlyList mods = await client.Games[5].Mods.Search(filter).ToList();
foreach (var mod in mods) {
Console.WriteLine(mod.Name);
}
```