File: src\Shared\Http2cat\Http2CatOptions.cs
Web Access
Project: src\src\Servers\Kestrel\samples\http2cat\http2cat.csproj (http2cat)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Threading.Tasks;
 
namespace Microsoft.AspNetCore.Http2Cat;
 
internal sealed class Http2CatOptions
{
    public string Url { get; set; }
    public Func<Http2Utilities, Task> Scenaro { get; set; }
}