ArgentPonyWarcraftClient 8.0.24

.NET Standard 2.0
dotnet add package ArgentPonyWarcraftClient --version 8.0.24
NuGet\Install-Package ArgentPonyWarcraftClient -Version 8.0.24
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ArgentPonyWarcraftClient" Version="8.0.24" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ArgentPonyWarcraftClient --version 8.0.24
#r "nuget: ArgentPonyWarcraftClient, 8.0.24"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ArgentPonyWarcraftClient as a Cake Addin
#addin nuget:?package=ArgentPonyWarcraftClient&version=8.0.24

// Install ArgentPonyWarcraftClient as a Cake Tool
#tool nuget:?package=ArgentPonyWarcraftClient&version=8.0.24

Argent Pony Warcraft Client

The Argent Pony Warcraft Client is a .NET client for the Blizzard World of Warcraft APIs. It lets .NET applications easily access information about World of Warcraft characters, guilds, items, spells, and more. It is a .NET Standard 2.0 library, which means it supports a broad range of platforms, including .NET Core 2.0+ and .NET Framework 4.6.1+.

Documentation

Documentation is available at https://blizzard-net.github.io/warcraft/

Usage

The WarcraftClient class provides access to the World of Warcraft APIs.

// Secrets from https://develop.battle.net/documentation/guides/getting-started.
string clientId = "MY-CLIENT-ID-GOES-HERE";
string clientSecret = "MY-CLIENT-SECRET-GOES-HERE";
var warcraftClient = new WarcraftClient(clientId, clientSecret);

// Retrieve the character profile for Drinian of realm Norgannon.
RequestResult<CharacterProfileSummary> result =
    await warcraftClient.GetCharacterProfileSummaryAsync("norgannon", "drinian", "profile-us");

// If we got it, display the level.
if (result.Success)
{
    CharacterProfileSummary profile = result.Value;
    Console.WriteLine($"Level for {profile.Name}: {profile.Level}");
}

See Getting Started and Using the Library for detailed instructions.

Feedback

Report problems in the GitHub Issues for the project or join the Discussions.

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on ArgentPonyWarcraftClient:

Package Downloads
ArgentPonyWarcraftClient.Extensions.DependencyInjection

Extensions of Microsoft.Extensions.DependencyInjection for the Argent Pony .NET client.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
8.0.24 80 3/18/2023
7.0.38 723 7/21/2021
6.1.10 365 5/19/2021
6.0.20 373 3/30/2021
5.1.0 404 1/20/2021
5.0.0 371 12/10/2020
4.1.0 665 9/10/2020
4.0.0 565 7/25/2020
4.0.0-alpha.7 250 7/20/2020
4.0.0-alpha.6 206 7/16/2020
4.0.0-alpha.5 247 7/9/2020
4.0.0-alpha.4 255 7/1/2020
4.0.0-alpha.3 268 6/21/2020
4.0.0-alpha.2 338 6/13/2020
4.0.0-alpha.1 227 6/8/2020
3.0.1 914 2/6/2019
3.0.0 996 1/15/2019
2.1.0 897 8/26/2018
2.0.0 1,024 7/18/2018
1.0.1 1,057 3/26/2018
1.0.0 1,011 2/21/2018
0.9.2 987 12/14/2017
0.9.1 1,143 12/7/2017
0.9.0 1,275 9/24/2017