FolkerKinzel.VCards 1.4.3

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package FolkerKinzel.VCards --version 1.4.3
NuGet\Install-Package FolkerKinzel.VCards -Version 1.4.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FolkerKinzel.VCards" Version="1.4.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FolkerKinzel.VCards --version 1.4.3
#r "nuget: FolkerKinzel.VCards, 1.4.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FolkerKinzel.VCards as a Cake Addin
#addin nuget:?package=FolkerKinzel.VCards&version=1.4.3

// Install FolkerKinzel.VCards as a Cake Tool
#tool nuget:?package=FolkerKinzel.VCards&version=1.4.3

FolkerKinzel.VCards

Full featured .NET-API to work with vCard files (*.vcf).

It enables you

  • to load vcf files from the file system and to save them there,
  • to serialize vcf files from and to Streams and
  • to convert vCard files, that match the vCard-versions 2.1, 3.0 and 4.0, to each other.

FolkerKinzel.VCards is used as a dependency in FolkerKinzel.Contacts.IO - an easy to use .NET-API to manage contact data of organizations and natural persons.

Overview

How data errors are handled

Parse errors, caused by not well-formed VCF files, are silently ignored by the library: It reads as much as it can from such files.

The same is for errors caused by incompliant data when serializing the vCard: Because of the different vCard standards are not completely compliant, incompliant data is silently ignored when converting from one vCard standard to another. To minimize this kind of data loss, the API tries to preserve incompliant data using well-known x-name properties. The usage of such x-name properties can be controlled via options (VcfOptions).

The data model explained

The data model used by this API is aligned to the vCard 4.0 standard (RFC6350). This means, every read vCard of version 2.1 and 3.0 is internally converted to vCard 4.0. When saved and serialized, they are converted back.

Class VCardProperty<T>

The data model of the class VCard based on classes, that are derived from VCardProperty<T>.

VCardProperty<T> exposes the following data:

public abstract class VCardProperty<T>
{
    public string? Group { get; set; }

    public ParameterSection Parameters { get; }

    public virtual T Value { get; protected set; }
}

This reflects the structure of a data row in a *.vcf-file:

group1.TEL;TYPE=home,voice;VALUE=uri:tel:+49-123-4567

In this example corresponds

  • group1 to VCardProperty<T>.Group,
  • TEL;TYPE=home,voice;VALUE=uri to VCardProperty<T>.Parameters and
  • tel:+49-123-4567 to VCardProperty<T>.Value.
Naming Conventions

Most properties of class VCard are collections. It has to do with, that many properties are allowed to have more than one instance per vCard (e.g. phone numbers, e-mail addresses). Such properties are named in Plural.</para>

A special feature are properties whose name ends with "Views": These are properties, which actually is only one instance per vCard allowed, but vCard 4.0 enables you to have different versions of that single instance (e.g. in different languages). You must set the same AltID parameter on each of these versions.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on FolkerKinzel.VCards:

Package Downloads
FolkerKinzel.Contacts.IO The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Small and easy to use framework for .NET to manage contact data of organizations and natural persons, including a data model and classes to persist it as vCard (*.vcf) or CSV.

GitHub repositories (2)

Showing the top 2 popular GitHub repositories that depend on FolkerKinzel.VCards:

Repository Stars
ONLYOFFICE/CommunityServer
Free open source office suite with business productivity tools: document and project management, CRM, mail aggregator.
shr670377723/CommunityServer-master
Version Downloads Last updated
7.0.0-beta.1 52 4/14/2024
6.2.1 142 4/11/2024
6.2.0 189 3/18/2024
6.2.0-beta.3 47 3/10/2024
6.2.0-beta.2 45 3/10/2024
6.2.0-beta.1 44 3/10/2024
6.1.0 2,154 11/7/2023
6.0.0 81 11/5/2023
6.0.0-beta.2 60 10/30/2023
6.0.0-beta.1 61 10/25/2023
5.0.0-beta.3 100 7/11/2023
5.0.0-beta.2 71 7/2/2023
5.0.0-beta.1 69 6/24/2023
4.0.0 39,791 1/30/2022
3.1.1 2,018 1/23/2022
3.1.0 3,353 12/25/2021
3.0.0 1,247 11/14/2021
3.0.0-beta.1 247 10/30/2021
3.0.0-alpha.2 162 9/8/2021
3.0.0-alpha.1 144 8/30/2021
2.2.0 7,784 6/11/2021
2.1.1 540 4/4/2021
2.1.0 813 3/6/2021
2.1.0-rc 225 2/27/2021
2.1.0-beta 239 2/10/2021
2.0.2-alpha 180 2/7/2021
2.0.0 572 1/30/2021
2.0.0-rc 767 1/25/2021
2.0.0-beta.2 186 1/20/2021
2.0.0-beta 233 1/8/2021
2.0.0-alpha 213 1/5/2021
1.4.4 675 9/19/2020
1.4.3 667 5/25/2020
1.4.2 639 5/5/2020

More English IntelliSense.