Creates a vCardProperty with the specified name and a byte array as a value.

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

Syntax

C#
public vCardProperty(
	string name,
	byte[] value
)
Visual Basic
Public Sub New ( _
	name As String, _
	value As Byte() _
)
Visual C++
public:
vCardProperty(
	String^ name, 
	array<unsigned char>^ value
)

Parameters

name
Type: System..::..String
The name of the property.
value
Type: array<System..::..Byte>[]()[][]
The value as a byte array.

See Also