IRtConnectionGetListT Method (String)

Returns a collection of T types for the specified list name and type.

Namespace:  ABSuite.AccessLayer.Connector.Core
Assembly:  Unisys.ABSuite.AccessLayer.Connector.Core (in Unisys.ABSuite.AccessLayer.Connector.Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

IEnumerable<T> GetList<T>(
	string listName
)

Parameters

listName
Type: SystemString
Specifies the name of the list to be retrieved. By default, this will be in the format of "ClassName"."Attribute Name". For example

Type Parameters

T
Declares the enumerated type to be returned

Return Value

Type: IEnumerableT
A collection of list items of the specified type
Examples

string listName = "PROD.PRODUCTS"; string listClassName = "PRODList"; var listType = this.RtConnection.GetTransmissionObjectType(listClassName); return this.RtConnection.GetList(object)(ListName, listType);
See Also

Reference