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.1.4+b1da393815f6638555a663d9a94167ecabea5695
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. |