Gets the form field value by its index in the form fields collection.

Namespace:  EasyAlgo.EAUpload
Assembly:  EasyAlgo.EAUpload (in EasyAlgo.EAUpload.dll)
Version: 1.3.0.0

Syntax

C#
public string this[
	int index
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	index As Integer _
) As String

Parameters

index
Type: System..::.Int32
The integer index of required form field.

Field Value

Type: System..::.String
The string that contains a value of the form field.

Exceptions

ExceptionCondition
System..::.ArgumentOutOfRangeException index is outside the valid range of indexes for the collection.

See Also