Ejemplo n.º 1
0
 /// <inheritdoc />
 public Task <Legend> GetAsync(LegendType id, CancellationToken cancellationToken = default) =>
 this.GetAsync(id.ToString(), cancellationToken);
Ejemplo n.º 2
0
 public static Task <Legend> Legends(LegendType ID)
 {
     return(Builder.AddDirective("legends")
            .AddDirective(ID.ToString())
            .RequestAsync <Legend>());
 }