/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/SignalR/perf/Microbenchmarks/Shared/TestConnectionContext.cs
16 строк
636 B
Pranav K
Enforce warnings for unused usings (#39280)
04 янв 2022, 00:26
Не верифицирован
04 янв 2022, 00:26
667f068
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.IO.Pipelines; using Microsoft.AspNetCore.Connections; using Microsoft.AspNetCore.Http.Features; namespace Microsoft.AspNetCore.SignalR.Microbenchmarks.Shared; public class TestConnectionContext : ConnectionContext { public override string ConnectionId { get; set; } public override IFeatureCollection Features { get; } = new FeatureCollection(); public override IDictionary<object, object> Items { get; set; } public override IDuplexPipe Transport { get; set; } }