/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Identity/test/Identity.FunctionalTests/Infrastructure/HtmlPage.cs
21 строка
609 B
Youssef Fahmy
Update AngleSharp to latest (#67898)
20 июл 2026, 15:48
Не верифицирован
20 июл 2026, 15:48
fc4e6e0
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Net.Http; using AngleSharp.Html.Dom; namespace Microsoft.AspNetCore.Identity.FunctionalTests; public class HtmlPage<TApplicationContext> { public HtmlPage(HttpClient client, IHtmlDocument document, TApplicationContext context) { Client = client; Document = document; Context = context; } public HttpClient Client { get; } public IHtmlDocument Document { get; } public TApplicationContext Context { get; } }