Discuss this help topic in SecureBlackbox Forum

TElAppleCertStorage.OnEvaluationResult

TElAppleCertStorage     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This event is fired when a certificate has been validated.

Declaration

[C#]
    not available

[VB.NET]
    not available

[Pascal]
    property OnEvaluationResult: TElEvaluationResultEvent;
    TElEvaluationResultEvent = procedure(Sender: TObject; const res: WideString; const resType: SB_SecTrustResultType) of object; // SB_APPLE_KEYCHAIN_iOS is not defined
    TElEvaluationResultEvent = procedure(Sender: TObject; const res: WideString; const resType: SB_SecTrustResultType; trust: SB_SecTrustRef) of object; // SB_APPLE_KEYCHAIN_iOS is defined
    
    SB_SecTrustRef = pointer;

[C++]
    not available

[PHP]
    not available

[Java]
    not available

Parameters

  • res - contains (textual) validation information.
  • resType - specifies the validation result.
  • trust - pointer to the record containing validation result.

SB_SecTrustResultType values:

Description

    This event is fired by TElAppleCertStorage to notify user about certificate validation result.

See also:     EvaluateTrust    

Discuss this help topic in SecureBlackbox Forum