Gets or sets the value of the data field at the specified index

Namespace:  JHSoftware.SimpleDNSPlus
Assembly:  SDNSAPI (in SDNSAPI)
Version: 1.1.0.0 (1.1.0.0)

Syntax

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

Parameters

index
Type: System..::.Int32
The zero-based index of the data field to get or set (see Record types and data fields)

Field Value

Value of the data fieldt at the specified index

Implements

IList<(Of <(T>)>)..::.Item[([(Int32])])

Remarks

To update data fields for record types with multiple data fields, consider using the more efficient SetAll method

See Also