Property Item
Item[String]
Gets or sets the value associated with the specified key.
Declaration
public virtual FieldValue this[string key] { get; set; }
Parameters
| Type |
Name |
Description |
| String |
key |
The key of the value to get or set. |
Property Value
| Type |
Description |
| FieldValue |
The value associated with the specified key. If the
specified key is not found, a get operation throws a
KeyNotFoundException, and a set operation
creates a new element with the specified key. |
Exceptions
See Also
Item[Int32]
Gets or sets the element at the specified index.
Declaration
public virtual FieldValue this[int index] { get; set; }
Parameters
| Type |
Name |
Description |
| Int32 |
index |
The zero-based index of the element to get or
set. |
Property Value
| Type |
Description |
| FieldValue |
The element at the specified index. |
Exceptions
See Also