ListenOptions.ConnectionAdapters Property

Definition

Gets the List<T> that allows each connection Stream to be intercepted and transformed. Configured by the UseHttps() and UseConnectionLogging(ListenOptions) extension methods.

public:
 property System::Collections::Generic::List<Microsoft::AspNetCore::Server::Kestrel::Core::Adapter::Internal::IConnectionAdapter ^> ^ ConnectionAdapters { System::Collections::Generic::List<Microsoft::AspNetCore::Server::Kestrel::Core::Adapter::Internal::IConnectionAdapter ^> ^ get(); };
public System.Collections.Generic.List<Microsoft.AspNetCore.Server.Kestrel.Core.Adapter.Internal.IConnectionAdapter> ConnectionAdapters { get; }
member this.ConnectionAdapters : System.Collections.Generic.List<Microsoft.AspNetCore.Server.Kestrel.Core.Adapter.Internal.IConnectionAdapter>
Public ReadOnly Property ConnectionAdapters As List(Of IConnectionAdapter)

Property Value

List<Microsoft.AspNetCore.Server.Kestrel.Core.Adapter.Internal.IConnectionAdapter>

Remarks

Defaults to empty.

Applies to