Discuss this help topic in SecureBlackbox Forum

TElRelativeDistinguishedName.LoadFromDNString

TElRelativeDistinguishedName     See also     


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


Loads the RDN from a given DN string.

Declaration

[C#]
    bool LoadFromDNString(string S, bool LiberalMode);

[VB.NET]
    Function LoadFromDNString(ByVal S As String, ByVal LiberalMode As Boolean) As Boolean

[Pascal]
    function LoadFromDNString(const S : string; LiberalMode : boolean) : boolean;

[C++]
    bool LoadFromDNString(const std::string &S, bool LiberalMode);

[PHP]
    bool LoadFromDNString(string $S, bool $LiberalMode)

[Java]
    boolean loadFromDNString(String S, boolean LiberalMode);

Parameters

  • S - the DN string from which the RDN should be loaded.
  • LiberalMode - specifies if the liberal mode should be used.

Return value

Returns True if the operation was successfull, otherwise returns False.

Description

Use this method to load the RDN from the specified DN string.

See also:     LoadFromTag     SaveToTag    

Discuss this help topic in SecureBlackbox Forum