/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Components/Endpoints/test/TestRenderModeAttribute.cs
9 строк
369 B
Steve Sanderson
Remove temporary APIs now Razor compiler is updated (#51252)
11 окт 2023, 20:40
Не верифицирован
11 окт 2023, 20:40
6bcf49d
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.AspNetCore.Components.Endpoints.Tests; internal class TestRenderModeAttribute<T> : RenderModeAttribute where T: IComponentRenderMode, new() { public override IComponentRenderMode Mode { get; } = new T(); }