ConnectionParameterCollection
Contents
[
Hide
]ConnectionParameterCollection class
Specifies the ConnectionParameter collection
class ConnectionParameterCollection;
Methods
Method | Description |
---|---|
get(number) | Gets the ConnectionParameter element at the specified index. |
get(string) | Gets the ConnectionParameter element with the specified name. |
set(ConnectionParameter, number) | Gets the ConnectionParameter element at the specified index. |
getCount() | Gets the number of elements contained in. |
isNull() | Checks whether the implementation object is null. |
get(number)
Gets the ConnectionParameter element at the specified index.
get(index: number) : ConnectionParameter;
Parameters:
Parameter | Type | Description |
---|---|---|
index | number | The zero based index of the element. |
Returns
The element at the specified index.
get(string)
Gets the ConnectionParameter element with the specified name.
get(connParamName: string) : ConnectionParameter;
Parameters:
Parameter | Type | Description |
---|---|---|
connParamName | string | connection parameter name |
Returns
The element with the specified name.
set(ConnectionParameter, number)
Gets the ConnectionParameter element at the specified index.
set(value: ConnectionParameter, index: number) : void;
Parameters:
Parameter | Type | Description |
---|---|---|
value | ConnectionParameter | The value to set. |
index | number | The zero based index of the element. |
Returns
The element at the specified index.
getCount()
Gets the number of elements contained in.
getCount() : number;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;