Discuss this help topic in SecureBlackbox Forum

TElMultipartFormList.ValuesByIndex

TElMultipartFormList     See also     


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


Retrieves list items by index.

Declaration

[C#]
    TElMultipartFormData ValuesByIndex[int Idx];

[VB.NET]
    Property ValuesByIndex(ByVal Idx As Integer) As TElMultipartFormData

[Pascal]
    property ValuesByIndex[Idx : integer] : TElMultipartFormData;

[C++]
    TElMultipartFormData* get_ValuesByIndex(int32_t Idx);

[PHP]
    TElMultipartFormData get_ValuesByIndex(integer $Idx)

[Java]
    TElMultipartFormData getValuesByIndex(int Idx);

Parameters

  • Idx - the index of the desired item in the list. The first item has Index=0, the second has Index=1, and so on.

Description

    Use this property to get form-data elements by index.

See also:     Count     ValuesByFileName     ValuesByName    

Discuss this help topic in SecureBlackbox Forum