21 lines
577 B
C#
21 lines
577 B
C#
|
//------------------------------------------------------------------------------
|
||
|
// <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
|
||
|
}
|
||
|
}
|