https://bz.apache.org/SpamAssassin/show_bug.cgi?id=8377
Bug ID: 8377
Summary: mobafire.com guide for raid:shadowLegends~madhatter
Product: Spamassassin
Version: 2.0
Hardware: Macintosh
OS: Linux
Status: NEW
Severity: enhancement
Priority: P2
Component: Private
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: Undefined
RaidToolkitClient client = new();
try
{
// connect to the RTK process
client.Connect();
// fetch the known user account information
var accounts = await client.AccountApi.GetAccounts();
// dump the first account in RaidExtractor format
AccountDump dump = await client.AccountApi.GetAccountDump(accounts[0].Id);
// ...
}
catch (Exception ex)
{
Console.WriteLine($"An error occurred: {ex.Message}");
}
finally
{
// make sure to disconnect when you're done!
client.Disconnect();
}
--
You are receiving this mail because:
You are the assignee for the bug.