DicomObjects.NET.V8
DicomObjects.Delegates Namespace / TlsAcceptor Delegate
The encrypted stream over which unencrypted data will be sent and received
Remote IP address
The local port to which the remote entity has connected



    TlsAcceptor Delegate
    Delegate used to accept TLS communications
    Syntax
    'Declaration
     
    Public Delegate Function TlsAcceptor( _
       ByVal EncryptedStream As Stream, _
       ByVal RemoteAddress As String, _
       ByVal LocalPort As Integer _
    ) As Stream
     
    'Usage
     
    Dim instance As New TlsAcceptor(AddressOf HandlerMethod)

    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.0 or higher

    See Also