DicomObjects.NET Core Documentation
DicomObjects.Delegates Namespace / TlsInitiator Delegate
The cleartext stream over which unencrypted data will be sent and received
Remote IP address
remote Port



In This Topic
    TlsInitiator Delegate
    In This Topic
    Delegate used to initiate TLS communications
    Syntax
    'Declaration
     
    
    Public Delegate Function TlsInitiator( _
       ByVal ClearTextStream As Stream, _
       ByVal RemoteAddress As String, _
       ByVal RemotePort As Integer _
    ) As Stream
    'Usage
     
    
    Dim instance As New TlsInitiator(AddressOf HandlerMethod)
    public delegate Stream TlsInitiator( 
       Stream ClearTextStream,
       string RemoteAddress,
       int RemotePort
    )
    public delegate Stream^ TlsInitiator( 
       Stream^ ClearTextStream,
       String^ RemoteAddress,
       int RemotePort
    )

    Parameters

    ClearTextStream
    The cleartext stream over which unencrypted data will be sent and received
    RemoteAddress
    Remote IP address
    RemotePort
    remote Port

    Return Value

    An encrypted stream following TLS negotiation
    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