Attribute.GetAttributeValues Method

Get the values of a list of attribute values NOTE: we need to refactor all the attribute methods for the future.
Public Shared Function GetAttributeValues( _ 
ByVal attrib_values As List(Of Tuple(Of EntityID, AttributeType)), _ 
ByVal db As IDatabase
) As List(Of AttributeValue)
This language is not supported or no code example is available.
public static List<AttributeValue> GetAttributeValues( 
List<Tuple<EntityID, AttributeType>> attrib_values
IDatabase db 
)
This language is not supported or no code example is available.
public:  
static List<AttributeValue^>^ GetAttributeValues( 
List<Tuple<EntityID^, AttributeType>^>^ attrib_values
IDatabase^ db 
)
This language is not supported or no code example is available.
JScript does not support generic types and methods.
This language is not supported or no code example is available.

Parameters

attrib_values
List<Tuple<EntityID, AttributeType>>

the list of id and attribute type of the attribute values

db
IDatabase

the db connection to use

Return Value

List<AttributeValue>

the attribute value to return, null if not found

.NET Framework

Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1

In this article

Definition