ProfileProviderCollection クラスとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > ProfileProviderCollection クラスの意味・解説 

ProfileProviderCollection クラス

メモ : このクラスは、.NET Framework version 2.0新しく追加されたものです。

ProfileProvider 抽象クラス継承するオブジェクトコレクション

名前空間: System.Web.Profile
アセンブリ: System.Web (system.web.dll 内)
構文構文

Public NotInheritable Class
 ProfileProviderCollection
    Inherits SettingsProviderCollection
Dim instance As ProfileProviderCollection
public sealed class ProfileProviderCollection
 : SettingsProviderCollection
public ref class ProfileProviderCollection
 sealed : public SettingsProviderCollection
public final class ProfileProviderCollection
 extends SettingsProviderCollection
public final class ProfileProviderCollection
 extends SettingsProviderCollection
解説解説
使用例使用例

アプリケーションに対して有効なプロバイダとそれらの種類リストするコードの例次に示します

<%@ Page Language="VB" %>
<%@ Import Namespace="System.Web.Profile"
 %>
<%@ Import Namespace="System.Configuration.Provider"
 %>
<html>
<head>
<title>List Enabled Providers</title>
</head>
<body>

<%
For Each p As ProviderBase
 In ProfileManager.Providers
  Response.Write(p.Name & ", " & p.GetType().ToString()
 & "<BR>")
Next
%>

</body>
</html>
<%@ Page Language="C#" %>
<%@ Import Namespace="System.Web.Profile" %>
<%@ Import Namespace="System.Configuration.Provider" %>
<html>
<head>
<title>List Enabled Providers</title>
</head>
<body>

<%
foreach (ProviderBase p in ProfileManager.Providers)
  Response.Write(p.Name + ", " + p.GetType() + "<BR>");
%>

</body>
</html>
.NET Framework のセキュリティ.NET Frameworkセキュリティ
継承階層継承階層
System.Object
   System.Configuration.Provider.ProviderCollection
     System.Configuration.SettingsProviderCollection
      System.Web.Profile.ProfileProviderCollection
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「ProfileProviderCollection クラス」の関連用語

ProfileProviderCollection クラスのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



ProfileProviderCollection クラスのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS