Discuss this help topic in SecureBlackbox Forum

TElWinCertStorage.GetStoreFriendlyName

TElWinCertStorage     See also     


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


Returns friendly name for Windows certificate storage.

Declaration

[C#]
    static string GetStoreFriendlyName(string StoreName);

[VB.NET]
    Shared Function GetStoreFriendlyName(ByVal StoreName As String) As String

[Pascal]
    class function GetStoreFriendlyName(StoreName : string) : string;

[C++]
    static void GetStoreFriendlyName(const std::string &StoreName, std::string &OutResult);

[PHP]
    string GetStoreFriendlyName(string $StoreName)

[Java]
    static String getStoreFriendlyName(TElWinCertStorage> this, String StoreName);

Parameters

  • Self - you should always pass null as this parameter.
  • StoreName - system storage name.

Return value

    Friendly name of the storage.

Description

    Each Windows certificate storage has two names. The first name is such as "MY", "ROOT" etc. At the same time each storage can have the second name so-called "friendly name": "Personal", "Trusted root" etc. GetStoreFriendlyName allows to get the second name by the first one.

See also:     GetAvailablePhysicalStores    

Discuss this help topic in SecureBlackbox Forum