Discuss this help topic in SecureBlackbox Forum

TElXMLSOAPCompoundParameter.AddDateTime

TElXMLSOAPCompoundParameter     See also     


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


Adds a new DateTime parameter to the compound.

Declaration

[C#]
    int AddDateTime(string ParamName, DateTime Value);
    int AddDateTime(string ParamName, string ParamNamespaceURI, DateTime Value);

[VB.NET]
    Function AddDateTime(ByVal ParamName As String, ByVal Value As DateTime) As Integer
    Function AddDateTime(ByVal ParamName As String, ByVal ParamNamespaceURI As String, ByVal Value As DateTime) As Integer

[Pascal]
    function AddDateTime(const ParamName : XMLString; const Value : TElDateTime) : Integer; overload;
    function AddDateTime(const ParamName, ParamNamespaceURI : XMLString; const Value : TElDateTime) : Integer; overload;

[C++]
    int32_t AddDateTime(const sb_u16string &ParamName, int64_t Value);
    int32_t AddDateTime(const std::wstring &ParamName, int64_t Value);
    int32_t AddDateTime(const sb_u16string &ParamName, const sb_u16string &ParamNamespaceURI, int64_t Value);
    int32_t AddDateTime(const std::wstring &ParamName, const std::wstring &ParamNamespaceURI, int64_t Value);

[PHP]
    integer AddDateTime(string $ParamName, DateTime $Value)
    integer AddDateTime(string $ParamName, string $ParamNamespaceURI, DateTime $Value)

[Java]
    int addDateTime(String ParamName, String ParamNamespaceURI, Date Value);
    int addDateTime(String ParamName, Date Value);

Parameters

  • ParamName - the name of the item to be added.
  • ParamNamespaceURI - namespace URI of the new item.
  • Value - the value of the new item.

Return value

Returns the index of the newly added item on success, and -1 on failure.

Description

Use this method to add a DateTime value to the compound.

See also:     Items     ...    

Discuss this help topic in SecureBlackbox Forum