Discuss this help topic in SecureBlackbox Forum

TElMessageHeaderField.GetParamValue

TElMessageHeaderField     See also     


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


Returns parameter value.

Declaration

[C#]
    string GetParamValue(int Index);
    string GetParamValue(string ParamName);

[VB.NET]
    Function GetParamValue(ByVal Index As Integer) As String
    Function GetParamValue(ByVal ParamName As String) As String

[Pascal]
    function GetParamValue(Index: Integer): TString;
    function GetParamValue(const ParamName: TString): TString;

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

[PHP]
    string GetParamValue(integer $Index)
    string GetParamValue(string $ParamName)

[Java]
    String getParamValue(String ParamName);
    String getParamValue(int Index);

Parameters

  • Index - index of parameter.
  • ParamName - name of the parameter.

Return value

    Parameter value.

Description

    Use this method to get parameter value by its name or index.

See also:     GetParamName     GetParamIndexByName     SetParamValue     IsParamExists    

Discuss this help topic in SecureBlackbox Forum