ScriptingProfileServiceSection Class
Represents the configuration section for profile-service settings. This class cannot be inherited.
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
The ScriptingProfileServiceSection class enables you to programmatically access and modify the profileService element of the configuration section for ASP.NET applications that use AJAX functionality.
The profile service is used to get and set profile properties for the user identity that is associated with the current request. This means that the profile service works for authenticated users. It also works for anonymous users when the anonymous identification feature is enabled (or available) in the configuration file.
The following example shows how to declaratively specify values for properties of the ScriptingProfileServiceSection class in a configuration file.
<system.web.extensions>
<scripting>
<webServices>
<profileService enabled="true"
readAccessProperties="FirstName,LastName"
writeAccessProperties="FirstName,LastName" />
</webServices>
</scripting>
</system.web.extensions>
The following example shows how to access the ScriptingProfileServiceSection section programmatically.
' Get the Web application configuration. Dim configuration As System.Configuration.Configuration = _ WebConfigurationManager.OpenWebConfiguration("/aspnetTest") ' Get the external Web services section. Dim webServicesSection As ScriptingWebServicesSectionGroup = _ CType(configuration.GetSectionGroup( _ "system.web.extensions/scripting/webServices"), ScriptingWebServicesSectionGroup) ' Get the profile service section. Dim profileSection _ As ScriptingProfileServiceSection = _ webServicesSection.ProfileService
- AspNetHostingPermission
for operating in a hosted environment. Demand value: LinkDemand. Associated enumeration: AspNetHostingPermissionLevel.Minimal.
System.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
System.Web.Configuration.ScriptingProfileServiceSection
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.