Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 951 Bytes

README.md

File metadata and controls

26 lines (15 loc) · 951 Bytes

Nuget

BytexDigital.Steam

This library is a wrapper for the popular SteamKit2 library. It's primary goal is to simplify specific APIs of it to make them easier to use.

As of now, this library's main purpose is to allow for simple content downloading (apps and workshop items) off Steam.

⚠️ Please note that this library is in early beta. APIs may change heavily between versions.

Download

nuget package

Simple item download usage example

See the test client project

Filter which files to download

You can use a condition to limit your download to specific files.

var downloadTask = downloadHandler.DownloadToFolderAsync(@".\downloads", x => x.FileName.EndsWith(".exe"));