QuickOPC User's Guide and Reference
ValidateCertificateEventHandler Delegate



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.Security Namespace : ValidateCertificateEventHandler Delegate
The source of the event.
The event data.
Represents the callback method that will verify the certificate used for authentication.
Syntax
'Declaration
 
<CLSCompliantAttribute(True)>
<ComVisibleAttribute(False)>
Public Delegate Sub ValidateCertificateEventHandler( _
   ByVal sender As Object, _
   ByVal e As ValidateCertificateEventArgs _
) 
'Usage
 
Dim instance As New ValidateCertificateEventHandler(AddressOf HandlerMethod)
[CLSCompliant(true)]
[ComVisible(false)]
public delegate void ValidateCertificateEventHandler( 
   object sender,
   ValidateCertificateEventArgs e
)
[CLSCompliant(true)]
[ComVisible(false)]
public delegate void ValidateCertificateEventHandler( 
   Object^ sender,
   ValidateCertificateEventArgs^ e
)

Parameters

sender
The source of the event.
e
The event data.
Requirements

Target Platforms: .NET Framework: Windows 10 (selected versions), Windows 11 (selected versions), Windows Server 2016, Windows Server 2022; .NET: Linux, macOS, Microsoft Windows

See Also