Microsoft.AspNetCore.SignalR.Transports.LongPollingTransport.LongPollingTransport C# (CSharp) Метод

LongPollingTransport() публичный Метод

public LongPollingTransport ( HttpContext context, JsonSerializer jsonSerializer, ITransportHeartbeat heartbeat, IPerformanceCounterManager performanceCounterManager, IApplicationLifetime applicationLifetime, ILoggerFactory loggerFactory, IOptions optionsAccessor, IMemoryPool pool ) : System
context HttpContext
jsonSerializer Newtonsoft.Json.JsonSerializer
heartbeat ITransportHeartbeat
performanceCounterManager IPerformanceCounterManager
applicationLifetime IApplicationLifetime
loggerFactory ILoggerFactory
optionsAccessor IOptions
pool IMemoryPool
Результат System
        public LongPollingTransport(HttpContext context,
                                    JsonSerializer jsonSerializer,
                                    ITransportHeartbeat heartbeat,
                                    IPerformanceCounterManager performanceCounterManager,
                                    IApplicationLifetime applicationLifetime,
                                    ILoggerFactory loggerFactory,
                                    IOptions<SignalROptions> optionsAccessor,
                                    IMemoryPool pool)
            : base(context, jsonSerializer, heartbeat, performanceCounterManager, applicationLifetime, loggerFactory, pool)
        {
            _pollDelay = optionsAccessor.Value.Transports.LongPolling.PollDelay;
            _counters = performanceCounterManager;
        }