ExternalConnectionCollection

ExternalConnectionCollection class

Specifies the ExternalConnection collection

class ExternalConnectionCollection;

Methods

MethodDescription
get(number)Gets the ExternalConnection element at the specified index.
get(string)Gets the ExternalConnection element with the specified name.
set(ExternalConnection, number)Gets the ExternalConnection element at the specified index.
getExternalConnectionById(number)Gets the ExternalConnection element with the specified id.
getCount()Gets the number of elements contained in.
isNull()Checks whether the implementation object is null.

get(number)

Gets the ExternalConnection element at the specified index.

get(index: number) : ExternalConnection;

Parameters:

ParameterTypeDescription
indexnumberThe zero based index of the element.

Returns

The element at the specified index.

get(string)

Gets the ExternalConnection element with the specified name.

get(connectionName: string) : ExternalConnection;

Parameters:

ParameterTypeDescription
connectionNamestringthe name of data connection

Returns

The element with the specified name.

set(ExternalConnection, number)

Gets the ExternalConnection element at the specified index.

set(value: ExternalConnection, index: number) : void;

Parameters:

ParameterTypeDescription
valueExternalConnectionThe value to set.
indexnumberThe zero based index of the element.

Returns

The element at the specified index.

getExternalConnectionById(number)

Gets the ExternalConnection element with the specified id.

getExternalConnectionById(connId: number) : ExternalConnection;

Parameters:

ParameterTypeDescription
connIdnumberexternal connection id

Returns

The element with the specified id.

getCount()

Gets the number of elements contained in.

getCount() : number;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;