DEXTUpload.NET
Class StringElementList
- The minimum supported version
- 5.0.0.0
- The minimum support environment
- .NET Framework 4.0
- Explanation
-
The "StringElementList" is a collection that maintains a list of "DEXTUpload.NET.StringElement" objects.
Multiple string elements can be transmitted with the same name in a request through HTTP POST, so the "StringElementList" class is used to handle those elements with one form name(key).
Note) The "StringElement" class is impossible to be created as an instance directly by user.
- Type
-
public class StringElementList : List<StringElement>
- Properties
-
Key
-
Gets or sets the field name of the form.
The field name of the form in the multi-part data is the key value of "StringElementList" object. Therefore, the key value equals the value of the "Name" property of the registered "DEXTUpload.NET.StringElement" object in the "StringElementList" collection.
-
Type
public string Key { get; set; }
Item
-
Gets or sets the "DEXTUpload.NET.StringElement" object that be indicated the specified index.
-
Type
public new StringElement this[int index]
-
Parameters
Name Type Explanation index System.Int32 The zero-based index.
-