Discuss this help topic in SecureBlackbox Forum

TElDCNode.ReadRDN

TElDCNode     See also     


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


Read the RDN value of the child node.

Declaration

[C#]
    void ReadRDN(string Name, TElRelativeDistinguishedName Rdn, bool RaiseExceptionIfNotFound);

[VB.NET]
    Sub ReadRDN(ByVal Name As String, ByVal Rdn As TElRelativeDistinguishedName, ByVal RaiseExceptionIfNotFound As Boolean)

[Pascal]
    procedure ReadRDN(const Name : string; Rdn : TElRelativeDistinguishedName; RaiseExceptionIfNotFound : boolean);

[C++]
    void ReadRDN(const std::string &Name, TElRelativeDistinguishedName &Rdn, bool RaiseExceptionIfNotFound);
    void ReadRDN(const std::string &Name, TElRelativeDistinguishedName *Rdn, bool RaiseExceptionIfNotFound);

[PHP]
    void ReadRDN(string $Name, TElRelativeDistinguishedName $Rdn, bool $RaiseExceptionIfNotFound)

[Java]
    void readRDN(String Name, TElRelativeDistinguishedName Rdn, boolean RaiseExceptionIfNotFound);

Parameters

  • Name - The name of the node.
  • Rdn - The RDN where the value should be read.
  • RaiseExceptionIfNotFound - Set this parameter to True if the exception should be raised if the node was not found.

Description

    This method is used to read the RDN value of the desired node.

See also:     ReadBoolean     ReadInteger     ReadString     ReadStringList    

Discuss this help topic in SecureBlackbox Forum