[]
Gets or sets the Parameter at the specified index.
public Parameter this[int index] { get; set; }
| Type | Name | Description |
|---|---|---|
| int | index | The zero-based index of the parameter to get or set. |
| Type | Description |
|---|---|
| Parameter | The Parameter at the specified index. |
| Type | Condition |
|---|---|
| ArgumentOutOfRangeException | Thrown when |
| ArgumentNullException | Thrown when setting a null value. |
Gets the Parameter with the specified name.
public Parameter this[string name] { get; }
| Type | Name | Description |
|---|---|---|
| string | name | The name of the parameter to retrieve. |
| Type | Description |
|---|---|
| Parameter | The Parameter with the specified name. |
| Type | Condition |
|---|---|
| KeyNotFoundException | Thrown if the parameter with the specified |