r6-marketplace
1.1.0
dotnet add package r6-marketplace --version 1.1.0
NuGet\Install-Package r6-marketplace -Version 1.1.0
<PackageReference Include="r6-marketplace" Version="1.1.0" />
<PackageVersion Include="r6-marketplace" Version="1.1.0" />
<PackageReference Include="r6-marketplace" />
paket add r6-marketplace --version 1.1.0
#r "nuget: r6-marketplace, 1.1.0"
#addin nuget:?package=r6-marketplace&version=1.1.0
#tool nuget:?package=r6-marketplace&version=1.1.0
R6 Marketplace API Wrapper
A .NET wrapper for the Rainbow Six Siege Marketplace API.
Installation
With NuGet:
dotnet add package r6-marketplace
Or Visual Studio NuGet Package Manager:
Install-Package r6-marketplace
Getting Started
Initialize the client with your authentication credentials and start interacting with the API. For detailed usage instructions, see the Documentation.
Example
using r6_marketplace;
using r6_marketplace.Endpoints;
namespace Example
{
class Program
{
static async Task Main(string[] args)
{
r6_marketplace.R6MarketplaceClient client = new r6_marketplace.R6MarketplaceClient();
await client.Authenticate("email", "password");
int balance = await client.AccountEndpoints.GetBalance();
var inventory = await client.AccountEndpoints.GetInventory(
limit: 500
);
var totalValue = inventory.GetInventoryValue();
Console.WriteLine($"Total value: {totalValue.TotalValue}");
Console.WriteLine($"Total value without fees: {totalValue.TotalValueWithoutFee}");
}
}
}
Contributing
Contributions are welcome! If you find bugs or want to suggest improvements, feel free to open an issue or create a pull request.
License & Disclaimer
This project is licensed under the Apache 2.0 License.
"Ubisoft" and related marks are trademarks or registered trademarks of Ubisoft Entertainment. This project is not affiliated with, endorsed, or sponsored by Ubisoft Entertainment.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
- Fixed an error with `Authenticate()` not using custom http clients.
- `ImageUri` now has the `Value` of type `Uri`.
- `SearchTags` now has the `GetOriginalName()` method to return readable tags.
- Added XAML comments.