Click or drag to resize

IIQAPIGetListAttributeItems Method

Return a list of legal values for a particular IQ List Attribute

Namespace:  Informa.ImageQuest.API.Library
Assembly:  Informa.ImageQuest.API.Library (in Informa.ImageQuest.API.Library.dll) Version: 14.3.0.0
Syntax
List<string> GetListAttributeItems(
	string token,
	IQAttribute attribute
)

Parameters

token
Type: SystemString
User Authentication Token from a previous Login(String, String, String) or SystemLogin(String) call
attribute
Type: Informa.ImageQuest.API.LibraryIQAttribute
IQAttribute object representing the list attribute to be queried

Return Value

Type: ListString
A list of values that can legally be assigned to the specified list attribute.
Remarks

The return value for this method is documented as a generic ListT of strings. In most cases, the SOAP proxy class generator will serialize this value as a fixed-size array.

A list attribute's item list can be edited at any time via the administrative client interface; this includes renaming existing items to new names. API users should be careful when caching or embedding item values into external applications, and confirm that those values are still valid before attempting to save.

ValidateAttribute(String, String, String)

See Also