Gets the value of the first subproperty with the specified name, or the first value specified in a list.

Namespace: vCards
Assembly: ICalVCard (in ICalVCard.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public string GetValue(
	string name,
	string[] namelessValues
)
Visual Basic
Public Function GetValue ( _
	name As String, _
	namelessValues As String() _
) As String
Visual C++
public:
String^ GetValue(
	String^ name, 
	array<String^>^ namelessValues
)

Parameters

name
Type: System..::..String
The expected name of the subproperty.
namelessValues
Type: array<System..::..String>[]()[][]
A list of values that are sometimes listed as subproperty names. The first matching value is returned if the name parameter does not match.

See Also