Discuss this help topic in SecureBlackbox Forum

TElDCNode.ReadStringList

TElDCNode     See also     


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


Read the StringList value of the child node.

Declaration

[C#]
    void ReadStringList(string Name, TElStringList Lst, bool RaiseExceptionIfNotFound);

[VB.NET]
    Sub ReadStringList(ByVal Name As String, ByVal Lst As TElStringList, ByVal RaiseExceptionIfNotFound As Boolean)

[Pascal]
    procedure ReadStringList(const Name : string; Lst : TStringList; RaiseExceptionIfNotFound : boolean);

[C++]
    void ReadStringList(const std::string &Name, TElStringList &Lst, bool RaiseExceptionIfNotFound);
    void ReadStringList(const std::string &Name, TElStringList *Lst, bool RaiseExceptionIfNotFound);

[PHP]
    void ReadStringList(string $Name, TElStringList $Lst, bool $RaiseExceptionIfNotFound)

[Java]
    void readStringList(String Name, TElStringList Lst, boolean RaiseExceptionIfNotFound);

Parameters

  • Name - The name of the node.
  • Lst - The list where the value will 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 StringList value of the desired node.

See also:     ReadBoolean     ReadInteger     ReadRDN     ReadString    

Discuss this help topic in SecureBlackbox Forum