Creates a vCardProperty object with the specified name and value.

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

Syntax

C#
public vCardProperty(
	string name,
	string value
)
Visual Basic
Public Sub New ( _
	name As String, _
	value As String _
)
Visual C++
public:
vCardProperty(
	String^ name, 
	String^ value
)

Parameters

name
Type: System..::..String
value
Type: System..::..String

Remarks

The vCard specification supports multiple values in certain fields, such as the N field. The value specified in this constructor is loaded as the first value.

See Also