This topic has not yet been rated - Rate this topic

SettingsAllowAnonymousAttribute Class

Identifies whether a profile property can be set or accessed for an anonymous user.

System.Object
  System.Attribute
    System.Web.Profile.SettingsAllowAnonymousAttribute

Namespace:  System.Web.Profile
Assembly:  System.Web (in System.Web.dll)
[AttributeUsageAttribute(AttributeTargets.Property)]
public sealed class SettingsAllowAnonymousAttribute : Attribute

The SettingsAllowAnonymousAttribute type exposes the following members.

  Name Description
Public method SettingsAllowAnonymousAttribute Creates a new instance of the SettingsAllowAnonymousAttribute class and specifies whether to allow anonymous access to the associated profile property.
Top
  Name Description
Public property Allow Gets a value indicating whether the associated property of a custom profile implementation can be accessed if the user is an anonymous user.
Public property TypeId When implemented in a derived class, gets a unique identifier for this Attribute. (Inherited from Attribute.)
Top
  Name Description
Public method Equals Infrastructure. Returns a value that indicates whether this instance is equal to a specified object. (Inherited from Attribute.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Returns the hash code for this instance. (Inherited from Attribute.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method IsDefaultAttribute Gets a value indicating whether the Allow property is set to the default value. (Overrides Attribute.IsDefaultAttribute().)
Public method Match When overridden in a derived class, returns a value that indicates whether this instance equals a specified object. (Inherited from Attribute.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Top
  Name Description
Explicit interface implemetation Private method _Attribute.GetIDsOfNames Maps a set of names to a corresponding set of dispatch identifiers. (Inherited from Attribute.)
Explicit interface implemetation Private method _Attribute.GetTypeInfo Retrieves the type information for an object, which can be used to get the type information for an interface. (Inherited from Attribute.)
Explicit interface implemetation Private method _Attribute.GetTypeInfoCount Retrieves the number of type information interfaces that an object provides (either 0 or 1). (Inherited from Attribute.)
Explicit interface implemetation Private method _Attribute.Invoke Provides access to properties and methods exposed by an object. (Inherited from Attribute.)
Top

The SettingsAllowAnonymousAttribute class is used to identify whether a property of a custom profile implementation can be accessed if the user is an anonymous user. For information about enabling anonymous identification, see the documentation provided for the anonymousIdentification configuration element.

If no SettingsAllowAnonymousAttribute is specified for a profile property, anonymous access of the profile property is not allowed.

A custom profile implementation is a class that inherits from the ProfileBase abstract class and defines properties for the user profile that are not specified in the profile configuration element. You can specify a custom user-profile type in the application's Web.config file with the inherits attribute of the profile configuration element as shown in the following example.

<configuration>

<connectionStrings>

<add

name="SqlServices"

connectionString="Data Source=localhost;Integrated Security=SSPI;Initial Catalog=aspnetdb;" />

</connectionStrings>

<system.web>

<authentication mode="Forms" >

<forms

loginUrl="login.aspx"

name=".ASPXFORMSAUTH" />

</authentication>

<authorization>

<deny users="?" />

</authorization>

<profile inherits="Samples.AspNet.Profile.EmployeeProfile"

defaultProvider="SqlProvider">

<providers>

<clear />

<add

name="SqlProvider"

type="System.Web.Profile.SqlProfileProvider"

connectionStringName="SqlServices"

description="SQL Profile Provider for Sample"/>

<add

name="EmployeeInfoProvider"

type="System.Web.Profile.SqlProfileProvider"

connectionStringName="SqlServices"

description="SQL Profile Provider for Employee Info"/>

</providers>

<properties>

<add name="GarmentSize" />

</properties>

</profile>

</system.web>

</configuration>

The following code example defines a class that inherits from the ProfileBase to create a custom profile. The type of the custom profile is specified in the inherits attribute of the profile configuration element in the Web.config file for an application.


using System;
using System.Web.Profile;

namespace Samples.AspNet.Profile
{
  public class EmployeeProfile : ProfileBase
  {
    [SettingsAllowAnonymous(false)]
    [ProfileProvider("EmployeeInfoProvider")]
    public string Department
    {
      get { return base["EmployeeDepartment"].ToString(); }
      set { base["EmployeeDepartment"] = value; }
    }

    [SettingsAllowAnonymous(false)]
    [ProfileProvider("EmployeeInfoProvider")]
    public EmployeeInfo Details
    {
      get { return (EmployeeInfo)base["EmployeeInfo"]; }
      set { base["EmployeeInfo"] = value; }
    }

  }

  public class EmployeeInfo
  {
    public string Name;
    public string Address;
    public string Phone;
    public string EmergencyContactName;
    public string EmergencyContactAddress;
    public string EmergencyContactPhone;
  }
}


.NET Framework

Supported in: 4, 3.5, 3.0, 2.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ