AttributeValueGetFieldValue(String, String) Method
Intended for Attributes with MultipleValues set to true (is a list).
Retreives the field value based on the passed in fieldName and fieldKey. If fieldName has not yet been set, or the fieldKey is not yet used, the default value for the feild is returned.
Caller is responsible for casting to the approrpirate .NET type.
Namespace: Scopos.BabelFish.DataModel.AttributeValueAssembly: BabelFish (in BabelFish.dll) Version: 1.12.5.15+bc7490f802416c9e774304c66372b6a26afede1d
public Object GetFieldValue(
string fieldName,
string fieldKey
)
- fieldName String
- Valid FieldName from GetAttributeDefintionFields()
- fieldKey String
- Valid FieldKey string from GetFieldKeys()
Objectobject to be Type cast; null object if not found
| AttributeValueException | Thrown when the passed in fieldName is unknown, or the Attribute is not a multi-value attribute. |