File: src\Shared\Http2cat\Http2CatOptions.cs | Web Access |
Project: src\src\Servers\IIS\IIS\test\IIS.NewHandler.FunctionalTests\IIS.NewHandler.FunctionalTests.csproj (IIS.NewHandler.FunctionalTests) |
// 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; } } |