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
'Usage
Dim instance As New TlsAcceptor(AddressOf HandlerMethod)
public delegate System.IO.Stream TlsAcceptor(
System.IO.Stream ,
System.string ,
System.int
)
public delegate TlsAcceptor(
: System.IO.Stream;
: System.String;
: System.Integer
);
public delegate TlsAcceptor(
: System.IO.Stream,
: System.String,
: System.int
) : System.IO.Stream
public: __gc __delegate System.IO.Stream* TlsAcceptor(
System.IO.Stream* ,
System.string* ,
System.int
)
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