public static IApplicationBuilder UsePlayground( this IApplicationBuilder applicationBuilder, PathString queryPath) { return(applicationBuilder.UsePlayground(new PlaygroundOptions { QueryPath = queryPath, Path = queryPath + new PathString("/playground") })); }
public static IApplicationBuilder UsePlayground( this IApplicationBuilder applicationBuilder) { return(applicationBuilder.UsePlayground(new PlaygroundOptions())); }