Discuss this help topic in SecureBlackbox Forum

TElMessageHeaderField.SetParamValue

TElMessageHeaderField     See also     


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


Use this method to set parameter value.

Declaration

[C#]
    void SetParamValue(int Index, string wsValue);
    void SetParamValue(string ParamName, string wsValue);

[VB.NET]
    Sub SetParamValue(ByVal Index As Integer, ByVal wsValue As String)
    Sub SetParamValue(ByVal ParamName As String, ByVal wsValue As String)

[Pascal]
    procedure SetParamValue(Index: Integer; const wsValue: TString);
    procedure SetParamValue(const ParamName, wsValue: TString);

[C++]
    void SetParamValue(int32_t Index, const sb_u16string &wsValue);
    void SetParamValue(int32_t Index, const std::wstring &wsValue);
    void SetParamValue(const sb_u16string &ParamName, const sb_u16string &wsValue);
    void SetParamValue(const std::wstring &ParamName, const std::wstring &wsValue);

[PHP]
    void SetParamValue(integer $Index, string $wsValue)
    void SetParamValue(string $ParamName, string $wsValue)

[Java]
    void setParamValue(String ParamName, String wsValue);
    void setParamValue(int Index, String wsValue);

Parameters

  • Index - index of parameter.
  • ParamName - name of the parameter.
  • wsValue - new parameter value.

Description

    This method allows to set parameter value by its name or index.

See also:     GetParamName     GetParamIndexByName     GetParamValue     IsParamExists    

Discuss this help topic in SecureBlackbox Forum