Adds a new PropertyValue with the specified key and value to the collection.

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public PropertyValue Add(
	string key,
	string value
)
Visual Basic (Declaration)
Public Function Add ( _
	key As String, _
	value As String _
) As PropertyValue
Visual C++
public:
PropertyValue^ Add(
	String^ key, 
	String^ value
)

Parameters

key
Type: System..::.String
Key of the property value to add.
value
Type: System..::.String
Value of the property value to add.

Return Value

The new PropertyValuethat was added to the collection.

See Also