Discuss this help topic in SecureBlackbox Forum

NewValue

Declared in     See also     


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


This topic is under development…

Declaration

[C#/Java]
    not implemented;

[VB.NET]
    not implemented;

[Pascal]
    function NewValue(B : Boolean) : TElJsonValue;
    function NewValue(E : Extended) : TElJsonValue;
    function NewValue(I : Int64) : TElJsonValue;
    function NewValue(const S : string) : TElJsonValue;

[C++]
    TElJsonValueHandle NewValue(bool B);
    TElJsonValueHandle NewValue(double E);
    TElJsonValueHandle NewValue(int64_t I);
    TElJsonValueHandle NewValue(const std::string & S);

Parameters

  • B -
  • E -
  • I -
  • S -

Return value

    …

Description

    (1) Create new instance of TElJsonValue with type set to jsonBoolean and initializes it with the specified value B.
    (2) Create new instance of TElJsonValue with type set to jsonNumber and initializes it with the specified value E.
    (3) Create new instance of TElJsonValue with type set to jsonNumber and initializes it with the specified value I.
    (4) Create new instance of TElJsonValue with type set to jsonString and initializes it with the specified value S.

Declared in

.NET:
  • Namespace: SBJSON
  • Assembly: SecureBlackbox.Base
VCL:
  • Unit: SBJSON
Java:
  • Package: SecureBlackbox.Base.jar
C++:
  • sbjson.h

See also:     NewNull     NewObject     NewArray     Read     Write    

Discuss this help topic in SecureBlackbox Forum