Discuss this help topic in SecureBlackbox Forum

TElMessageHeaderField.AddParam

TElMessageHeaderField     See also     


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


Adds parameter to the header field.

Declaration

[C#]
    void AddParam(string ParamName, string ParamValue);

[VB.NET]
    Sub AddParam(ByVal ParamName As String, ByVal ParamValue As String)

[Pascal]
    procedure AddParam(const ParamName, ParamValue: TString);

[C++]
    void AddParam(const sb_u16string &ParamName, const sb_u16string &ParamValue);
    void AddParam(const std::wstring &ParamName, const std::wstring &ParamValue);

[PHP]
    void AddParam(string $ParamName, string $ParamValue)

[Java]
    void addParam(String ParamName, String ParamValue);

Parameters

  • ParamName - the name of new parameter.
  • ParamValue - the value of new parameter.

Description

    Use this method when you need to add parameter to the header field.
    Note, not every type of header fields can have parameters.

See also:     ClearParams     DeleteParam     GetParamName     GetParamValue     GetParamIndexByName     IsParamExists    

Discuss this help topic in SecureBlackbox Forum