File: System\IO\Log\RecordAppendOptions.cs
Project: ndp\cdf\src\NetFx35\System.IO.Log\System.IO.Log.csproj (System.IO.Log)
//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------
namespace System.IO.Log
{
    using System;
 
    [Flags]
    public enum RecordAppendOptions
    {
        None        = 0x00,
        ForceAppend = 0x01,
        ForceFlush  = 0x02,
    }
}