1
0
mirror of https://github.com/aluxnimm/outlookcaldavsynchronizer.git synced 2025-10-06 00:12:52 +02:00
Files
outlookcaldavsynchronizer/Thought.vCards/vCardStandardWriterOptions.cs
Gerhard Zehetbauer eeb6137897 Reformat indents to 4
2021-09-12 21:35:30 +02:00

36 lines
1.2 KiB
C#

/* =======================================================================
* vCard Library for .NET
* Copyright (c) 2007-2009 David Pinch; http://wwww.thoughtproject.com
* See LICENSE.TXT for licensing information.
* ======================================================================= */
using System;
using System.Collections.Generic;
using System.Text;
namespace Thought.vCards
{
/// <summary>
/// Extended options for the <see cref="vCardStandardWriter"/> class.
/// </summary>
[Flags]
public enum vCardStandardWriterOptions
{
/// <summary>
/// No options.
/// </summary>
None = 0,
/// <summary>
/// Indicates whether or not commas should be escaped in values.
/// </summary>
/// <remarks>
/// The vCard specification requires that commas be escaped
/// in values (e.g. a "," is translated to "\,"). However, Microsoft
/// Outlook(tm) does not properly decode these escaped commas. This
/// option instruct the writer to ignored (not translate) embedded
/// commas for better compatibility with Outlook.
/// </remarks>
IgnoreCommas = 1
}
}