Skip to content

nickelc/modio.net

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

mod.io

📦 Modio.NET - mod.io API Client Library for .NET

License Workflow Status

Examples

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<Game> 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<Mod> mods = await client.Games[5].Mods.Search(filter).ToList();
foreach (var mod in mods) {
    Console.WriteLine(mod.Name);
}

About

Modio.NET - A mod.io API Client Library for .NET

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages