mirror of
https://github.com/aluxnimm/outlookcaldavsynchronizer.git
synced 2025-10-06 00:12:52 +02:00
36 lines
921 B
C#
36 lines
921 B
C#
/* =======================================================================
|
|
* vCard Library for .NET
|
|
* Copyright (c) 2007-2009 David Pinch; http://wwww.thoughtproject.com
|
|
* See LICENSE.TXT for licensing information.
|
|
* ======================================================================= */
|
|
|
|
using System;
|
|
|
|
namespace Thought.vCards
|
|
{
|
|
/// <summary>
|
|
/// The encoding used to store a vCard property value in text format.
|
|
/// </summary>
|
|
public enum vCardEncoding
|
|
{
|
|
/// <summary>
|
|
/// Unknown or no encoding.
|
|
/// </summary>
|
|
Unknown = 0,
|
|
|
|
/// <summary>
|
|
/// Standard escaped text.
|
|
/// </summary>
|
|
Escaped,
|
|
|
|
/// <summary>
|
|
/// Binary or BASE64 encoding.
|
|
/// </summary>
|
|
Base64,
|
|
|
|
/// <summary>
|
|
/// Quoted-Printable encoding.
|
|
/// </summary>
|
|
QuotedPrintable
|
|
}
|
|
} |