profile の providers の remove 要素 (ASP.NET 設定スキーマ)
ユーザー プロファイル プロバイダーのコレクションからプロファイル プロバイダーのインスタンスを削除します。
この要素は、.NET Framework Version 2.0 で追加されました。
<remove name=" provider name" />
属性および要素
以降のセクションでは、属性、子要素、および親要素について説明します。
属性
属性 |
説明 |
---|---|
name |
必須の String 属性です。 コレクションから削除するプロファイル プロバイダーのオブジェクトの名前です。 |
子要素
なし。
親要素
要素 |
説明 |
---|---|
configuration |
共通言語ランタイムおよび .NET Framework アプリケーションで使用されるすべての構成ファイルで必要なルート要素を指定します。 |
system.web |
ASP.NET 構成セクションのルート要素を指定します。 |
profile |
アプリケーションのユーザー プロファイルを構成します。 |
providers |
ユーザー プロファイルのプロファイル プロバイダーのコレクションを定義します。 |
解説
アプリケーション コード内の profile 要素の構成値のアクセスおよび変更方法については、ProfileSection クラスを参照してください。
使用例
プロファイル情報の格納と取得に SqlProfileProvider を使用する ASP.NET アプリケーションを構成する方法を次のコード例に示します。 <remove> 要素は、新しい SqlProfileProvider を追加する前に既定の SQL Server プロファイル プロバイダーのインスタンスを削除します。
<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>
<membership defaultProvider="SqlProvider" userIsOnlineTimeWindow="15">
<providers>
<clear/>
<add name="SqlProvider"
type="System.Web.Security.SqlMembershipProvider"
connectionStringName="SqlServices"
applicationName="SampleApplication"
enablePasswordRetrieval="true"
enablePasswordReset="true"
passwordFormat="Encrypted"
requiresQuestionAndAnswer="true" />
</providers>
</membership>
<profile defaultProvider="SqlProvider">
<providers>
<remove name="AspNetSqlProvider" />
<add name="SqlProvider"
type="System.Web.Profile.SqlProfileProvider"
connectionStringName="SqlServices"
applicationName="SampleApplication"
description="SqlProfileProvider for SampleApplication" />
</providers>
<properties>
<add name="ZipCode" />
<add name="CityAndState" />
</properties>
</profile>
</system.web>
</configuration>
要素情報
構成セクション ハンドラー |
|
構成メンバー |
|
構成できる場所 |
Machine.config ルート レベルの Web.config アプリケーション レベルの Web.config |
要件 |
Microsoft Internet Information Services (IIS) バージョン 5.0、5.1、または 6.0 .NET Framework Version 2.0 Microsoft Visual Studio 2005 |
参照
処理手順
参照
system.web 要素 (ASP.NET 設定スキーマ)
profile の providers の add 要素 (ASP.NET 設定スキーマ)
profile の providers の clear 要素 (ASP.NET 設定スキーマ)
概念
ASP.NET Web サーバー コントロールとブラウザーの機能