In This Topic
Delegate used to accept TLS communications
Syntax
'Declaration
Public Delegate Function TlsAcceptor( _
ByVal As System.IO.Stream, _
ByVal As System.String, _
ByVal As System.Integer _
) As System.IO.Stream
public delegate System.IO.Stream TlsAcceptor(
System.IO.Stream ,
System.string ,
System.int
)
Parameters
- EncryptedStream
- The encrypted stream over which unencrypted data will be sent and received
- RemoteAddress
- Remote IP address
- LocalPort
- The local port to which the remote entity has connected
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also