DicomObjects.NET.8.48 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 System.IO.Stream, _
       ByVal RemoteAddress As System.String, _
       ByVal LocalPort As System.Integer _
    ) As System.IO.Stream
    'Usage
     
    
    Dim instance As New TlsAcceptor(AddressOf HandlerMethod)
    public delegate System.IO.Stream TlsAcceptor( 
       System.IO.Stream EncryptedStream,
       System.string RemoteAddress,
       System.int LocalPort
    )
    public delegate TlsAcceptor( 
        EncryptedStream: System.IO.Stream;
        RemoteAddress: System.String;
        LocalPort: System.Integer
    );
    public delegate TlsAcceptor( 
       EncryptedStream : System.IO.Stream,
       RemoteAddress : System.String,
       LocalPort : System.int
    ) : System.IO.Stream
    public: __gc __delegate System.IO.Stream* TlsAcceptor( 
       System.IO.Stream* EncryptedStream,
       System.string* RemoteAddress,
       System.int LocalPort
    )
    public delegate System.IO.Stream^ TlsAcceptor( 
       System.IO.Stream^ EncryptedStream,
       System.String^ RemoteAddress,
       System.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: .NET CLR 4.8 or higher

    See Also