Discuss this help topic in SecureBlackbox Forum

TElCustomCertStorage.Chains

TElCustomCertStorage     See also     


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


Provides access to individual chains.

Declaration

[C#]
    int Chains[int Index];

[VB.NET]
    Property Chains(ByVal Index As Integer) As Integer

[Pascal]
    property Chains[Index : integer] : integer;

[C++]
    int32_t get_Chains(int32_t Index);

[PHP]
    integer get_Chains(integer $Index)

[Java]
    not available

Parameters

  • Index - The index of desired chain in list. The first chain has Index=0, the second has Index=1 and so on.

Description

    This property is used to access certificate chains built with certificates which are currently present in storage. Use this property to get the index of the first (end-entity) certificate in the chain. The next certificates in chain can be obtained using GetIssuerCertificate method.

See also:     ChainCount    

Discuss this help topic in SecureBlackbox Forum