Updates a vCard object based on the contents of a vCardProperty.

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

Syntax

C#
public void ReadInto(
	vCard card,
	vCardProperty property
)
Visual Basic
Public Sub ReadInto ( _
	card As vCard, _
	property As vCardProperty _
)
Visual C++
public:
void ReadInto(
	vCard^ card, 
	vCardProperty^ property
)

Parameters

card
Type: vCards..::..vCard
An initialized vCard object.
property
Type: vCards..::..vCardProperty
An initialized vCardProperty object.

Remarks

This method examines the contents of a property and attempts to update an existing vCard based on the property name and value. This function must be updated when new vCard properties are implemented.

See Also