ProtectedConfiguration.Providers プロパティ
アセンブリ: System.Configuration (system.configuration.dll 内)

public: static property ProtectedConfigurationProviderCollection^ Providers { ProtectedConfigurationProviderCollection^ get (); }
インストールされている ProtectedConfigurationProvider オブジェクトの ProtectedConfigurationProviderCollection コレクション。

<PermissionSet( _ SecurityAction.Demand, Name:="FullTrust")> _ Private Shared Sub GetProviders() ' Get the providers' collection. Dim providers _ As ProtectedConfigurationProviderCollection = _ ProtectedConfiguration.Providers Dim pEnum As IEnumerator = _ providers.GetEnumerator() Dim provider _ As ProtectedConfigurationProvider For Each provider In providers Console.WriteLine( _ "Provider name: {0}", provider.Name) Console.WriteLine( _ "Provider description: {0}", provider.Description) Next provider End Sub 'GetProviders
[PermissionSet(SecurityAction.Demand, Name="FullTrust")] private static void GetProviders() { // Get the providers' collection. ProtectedConfigurationProviderCollection providers = ProtectedConfiguration.Providers; IEnumerator pEnum = providers.GetEnumerator(); foreach (ProtectedConfigurationProvider provider in providers) { Console.WriteLine ("Provider name: {0}", provider.Name); Console.WriteLine ("Provider description: {0}", provider.Description); } }

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


ProtectedConfiguration クラス
ProtectedConfiguration メンバ
System.Configuration 名前空間
ProtectedConfigurationProvider
Weblioに収録されているすべての辞書からProtectedConfiguration.Providers プロパティを検索する場合は、下記のリンクをクリックしてください。

- ProtectedConfiguration.Providers プロパティのページへのリンク