public MsQuicConnectionListener(MsQuicTransportOptions options, IHostApplicationLifetime lifetime, IMsQuicTrace log, EndPoint endpoint)
 {
     _api = new MsQuicApi();
     _log = log;
     _transportContext = new MsQuicTransportContext(lifetime, _log, options);
     EndPoint          = endpoint;
 }
Exemple #2
0
 public MsQuicTransportContext(IHostApplicationLifetime appLifetime, IMsQuicTrace log, MsQuicTransportOptions options)
 {
     AppLifetime = appLifetime;
     Log         = log;
     Options     = options;
 }