Method GetRecipesByOutputItemIdByPage
- Namespace
- GuildWars2.Hero.Crafting.Recipes
- Assembly
- GW2SDK.dll
GetRecipesByOutputItemIdByPage(int, int, int?, MissingMemberBehavior, CancellationToken)
Retrieves a page of recipes for creating the specified output item.
public Task<(HashSet<Recipe> Value, MessageContext Context)> GetRecipesByOutputItemIdByPage(int outputItemId, int pageIndex, int? pageSize = null, MissingMemberBehavior missingMemberBehavior = MissingMemberBehavior.Error, CancellationToken cancellationToken = default)
Parameters
outputItemId
intThe item ID of the created item.
pageIndex
intHow many pages to skip. The first page starts at 0.
pageSize
int?How many entries to take.
missingMemberBehavior
MissingMemberBehaviorThe desired behavior when JSON contains unexpected members.
cancellationToken
CancellationTokenA token to cancel the request.