DicomObjects.NET Core Documentation
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



In This Topic
    TlsAcceptor Delegate
    In This Topic
    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)
    public delegate Stream TlsAcceptor( 
       Stream EncryptedStream,
       string RemoteAddress,
       int LocalPort
    )
    public delegate Stream^ TlsAcceptor( 
       Stream^ EncryptedStream,
       String^ RemoteAddress,
       int LocalPort
    )

    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: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also