Discuss this help topic in SecureBlackbox Forum

TElWinCertStorage.Select

TElWinCertStorage     See also     


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


Allows to select certificates from system store.

Declaration

[C#]
    bool Select(IntPtr Owner, TElCustomCertStorage SelectedList);

[VB.NET]
    Function Select(ByVal Owner As IntPtr, ByVal SelectedList As TElCustomCertStorage) As Boolean

[Pascal]
    function Select(Owner : HWND; SelectedList : TElCustomCertStorage) : boolean;

[C++]
    bool Select(uint32_t Owner, TElCustomCertStorage &SelectedList);
    bool Select(uint32_t Owner, TElCustomCertStorage *SelectedList);

[PHP]
    bool Select(integer $Owner, TElCustomCertStorage $SelectedList)

[Java]
    boolean select(long Owner, TElCustomCertStorage SelectedList);

Parameters

  • Owner - a handle to the window that is the parent of the certificate select dialog box.
  • SelectedList - contains a list of selected certificates.

Return value

    Returns True if the dialog was successfully created, AND at least one certificate was selected; otherwise, returns False.

Description

    This functions creates a system dialog which allows user to select certificates from system store.

See also:     ImportWizard    

Discuss this help topic in SecureBlackbox Forum