21 lines
501 B
C#
21 lines
501 B
C#
using System;
|
|
using System.Buffers;
|
|
using System.IO.Pipelines;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Http.Features;
|
|
|
|
namespace Microsoft.AspNetCore.Protocols
|
|
{
|
|
public abstract class ConnectionContext
|
|
{
|
|
public abstract string ConnectionId { get; set; }
|
|
|
|
public abstract IFeatureCollection Features { get; }
|
|
|
|
public abstract IDuplexPipe Transport { get; set; }
|
|
|
|
public abstract MemoryPool MemoryPool { get; }
|
|
}
|
|
}
|