コード例 #1
0
ファイル: LegendsClient.cs プロジェクト: werdes/Gw2Sharp
 /// <inheritdoc />
 public Task <Legend> GetAsync(LegendType id, CancellationToken cancellationToken = default) =>
 this.GetAsync(id.ToString(), cancellationToken);
コード例 #2
0
ファイル: Mechanics.cs プロジェクト: Roytazz/GW2-Projects
 public static Task <Legend> Legends(LegendType ID)
 {
     return(Builder.AddDirective("legends")
            .AddDirective(ID.ToString())
            .RequestAsync <Legend>());
 }