Interface IClientTlsConnectionProvider
Defines a custom client TLS provider for Fiddler. The provider will be used to authenticate an existing connection and return a stream to read/write data from/to it.
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public interface IClientTlsConnectionProvider
Methods
AuthenticateAsync(Stream, SslClientAuthenticationOptions)
Performs a TLS handshake acting as a server on the supplied stream with authentication options
Declaration
Task<TlsConnection> AuthenticateAsync(Stream stream, SslClientAuthenticationOptions opts)
Parameters
System.IO.Stream
stream
|
System.Net.Security.SslClientAuthenticationOptions
opts
|
Returns
System.Threading.Tasks.Task<TlsConnection>
|