File: Profile\ProfileAuthenticationOptions.cs
Project: ndp\fx\src\xsp\system\Web\System.Web.csproj (System.Web)
//------------------------------------------------------------------------------
// <copyright file="ProfileAuthenticationOption.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
/*
 * ProfileAuthenticationOption
 *
 * Copyright (c) 2002 Microsoft Corporation
 */
namespace System.Web.Profile
{
    public enum ProfileAuthenticationOption
    {
        //None = 0,
        Anonymous = 0,
        Authenticated = 1,
        All = 2
    }
}