Discuss this help topic in SecureBlackbox Forum

TElJsonObject.GetIntegerValue

TElJsonObject     See also     


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


This topic is under development…

Declaration

[C#]
    long GetIntegerValue(string Name);
    long GetIntegerValue(string Name, long Default);

[VB.NET]
    Function GetIntegerValue(ByVal Name As String) As Long
    Function GetIntegerValue(ByVal Name As String, ByVal Default As Long) As Long

[Pascal]
    function GetIntegerValue(const Name : string) : Int64;
    function GetIntegerValue(const Name : string; Default : Int64) : Int64;

[C++]
    int64_t GetIntegerValue(const std::string &Name);
    int64_t GetIntegerValue(const std::string &Name, int64_t Default);

[PHP]
    integer GetIntegerValue(string $Name)
    integer GetIntegerValue(string $Name, integer $Default)

[Java]
    long getIntegerValue(String Name, long Default);
    long getIntegerValue(String Name);

Parameters

  • Name -
  • Default -

Return value

    …

Description

    (1) Returns the value of an integer 'Name' property of the object if it is available. Otherwise a "name not found" exception is raised.
    (2) Otherwise the Default value is returned.

See also:         

Discuss this help topic in SecureBlackbox Forum