OPC Studio User's Guide and Reference
CertificatesResult Property (GetCertificatesEventArgs)



OpcLabs.BaseLib Assembly > OpcLabs.BaseLib.Security Namespace > GetCertificatesEventArgs Class : CertificatesResult Property
A value result with collection of certificates obtained.
Syntax
'Declaration
 
<CanBeNullAttribute()>
Public Property CertificatesResult As ValueResult(Of PkiCertificateCollection)
'Usage
 
Dim instance As GetCertificatesEventArgs
Dim value As ValueResult(Of PkiCertificateCollection)
 
instance.CertificatesResult = value
 
value = instance.CertificatesResult
[CanBeNull()]
public ValueResult<PkiCertificateCollection> CertificatesResult {get; set;}
[CanBeNull()]
public:
property ValueResult<PkiCertificateCollection^>^ CertificatesResult {
   ValueResult<PkiCertificateCollection^>^ get();
   void set (    ValueResult<PkiCertificateCollection^>^ value);
}

Property Value

This value of this property can be null (Nothing in Visual Basic).

Remarks

If this property contains null after the event is handled, it indicates that the event handler does not supply the certificates.

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