Discuss this help topic in SecureBlackbox Forum

TElDCNode.ReadInteger

TElDCNode     See also     


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


Read the integer value of the child node.

Declaration

[C#]
    int ReadInteger(string Name, int Default, bool RaiseExceptionIfNotFound);

[VB.NET]
    Function ReadInteger(ByVal Name As String, ByVal Default As Integer, ByVal RaiseExceptionIfNotFound As Boolean) As Integer

[Pascal]
    function ReadInteger(const Name : string; Default : integer; RaiseExceptionIfNotFound : boolean) : integer;

[C++]
    int32_t ReadInteger(const std::string &Name, int32_t Default, bool RaiseExceptionIfNotFound);

[PHP]
    integer ReadInteger(string $Name, integer $Default, bool $RaiseExceptionIfNotFound)

[Java]
    int readInteger(String Name, int Default, boolean RaiseExceptionIfNotFound);

Parameters

  • Name - The name of the node.
  • Default - The result that should be returned if the node with specified name was not found.
  • RaiseExceptionIfNotFound - Set this parameter to True if the exception should be raised if the node was not found.

Return value

    Returns the integer value of the node with given name.

Description

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

See also:     ReadBoolean     ReadRDN     ReadString     ReadStringList    

Discuss this help topic in SecureBlackbox Forum