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.
getExternalConnectionById(number)Gets the ExternalConnection element with the specified id.
getCount()@deprecated. Please use the ‘count’ property instead. 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.

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()

@deprecated. Please use the ‘count’ property instead. Gets the number of elements contained in.

getCount() : number;

isNull()

Checks whether the implementation object is null.

isNull() : boolean;