File: Internal\SocketConnection.FeatureCollection.cs | Web Access |
Project: src\src\Servers\Kestrel\Transport.Sockets\src\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.csproj (Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets) |
// 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.Sockets; using Microsoft.AspNetCore.Connections.Features; namespace Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.Internal; internal sealed partial class SocketConnection : IConnectionSocketFeature { public Socket Socket => _socket; private void InitializeFeatures() { _currentIConnectionSocketFeature = this; } } |