[TIBCO.EMS .NET client library 6.3 documentation]

Delegate declaration for host name verifier

Namespace:  TIBCO.EMS
Assembly:  TIBCO.EMS (in TIBCO.EMS.dll)

Syntax

public delegate bool EMSSSLHostNameVerifier(
	Object sender,
	EMSSSLHostNameVerifierArgs args
)
Public Delegate Function EMSSSLHostNameVerifier ( _
	sender As Object, _
	args As EMSSSLHostNameVerifierArgs _
) As Boolean
public delegate bool EMSSSLHostNameVerifier(
	Object^ sender, 
	EMSSSLHostNameVerifierArgs^ args
)

Parameters

sender
Type: System..::.Object
The source of the event.
args
Type: TIBCO.EMS..::.EMSSSLHostNameVerifierArgs
The event argument, EMSSSLHostNameVerifierArgs

Remarks

The user can perform any necessary specific validations in the host name verifier delegate, returning false will cause the SSL handshake to terminate, returning true will cause the SSL handshake to continue.

See Also