e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
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
|
|
}
|
|
}
|