public static async ValueTask <IEnumerable <string> > GetOptionMethodsAsync(this IPipingStore Store, RequestKey Key, CancellationToken Token = default)
 => (await(Store ?? throw new ArgumentNullException(nameof(Store)))
Exemplo n.º 2
0
 public PipingController(IPipingStore Store, ILogger <PipingController> Logger, IOptions <PipingOptions> Options)
 {
     this.Store  = Store;
     Option      = Options.Value;
     this.Logger = Logger;
 }