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.11.3.13+877481945de6b4d2a3a561fea58e2494717cd263
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. |