-
Notifications
You must be signed in to change notification settings - Fork 1
Client
Chad Jakoby edited this page Sep 22, 2019
·
1 revision
// Optional API key:
string apiKey = "optional";
GW2Client client = new GW2Client(apiKey);
// Examples of using the client:
var titles = client.Account.GetTitles();
var recipes = client.Account.GetRecipes();
var bankItems = client.Account.GetBankItems();
var inventory = client.Characters.GetInventory("characterName");
var equipment = client.Characters.GetEquipment("characterName");
var guild = client.Guilds.GetGuild("guildId");
var continents = client.PvE.GetAllContinents();
var dungeons = client.PvE.GetDungeons();