ProtectedConfigurationとは? わかりやすく解説

ProtectedConfiguration クラス

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

現在のアプリケーション構成ファイルに対して保護され構成プロバイダへのアクセス提供します

名前空間: System.Configuration
アセンブリ: System.Configuration (system.configuration.dll 内)
構文構文

Public NotInheritable Class
 ProtectedConfiguration
public static class ProtectedConfiguration
public ref class ProtectedConfiguration abstract
 sealed
public final class ProtectedConfiguration
public final class ProtectedConfiguration
解説解説
使用例使用例

ProtectedConfiguration使用する方法の例を次に示します

Imports System
Imports System.Configuration
Imports System.Collections
Imports System.Security.Permissions

' Show how to use the ProtectedConfiguration.
NotInheritable Public Class
 UsingProtectedConfiguration
   
  

   <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 Shared Sub GetProviderName()
      ' Get the current provider name.
        Dim dataProtectionProviderName As String
 = _
        ProtectedConfiguration.DataProtectionProviderName
        Console.WriteLine( _
        "Data protection provider name: {0}", _
        dataProtectionProviderName)

      ' Get the Rsa provider name.
        Dim rsaProviderName As String
 = _
        ProtectedConfiguration.RsaProviderName
        Console.WriteLine( _
        "Rsa provider name: {0}", rsaProviderName)

        ' Get the Rsa provider name.
        Dim protectedSectionName As String
 = _
        ProtectedConfiguration.ProtectedDataSectionName
        Console.WriteLine( _
        "Protected section name: {0}", protectedSectionName)

    End Sub 'GetProviderName
   
   
    Public Shared Sub Main(ByVal
 args() As String)

       
        ' Get current and Rsa provider names.
        GetProviderName()

        ' Get the providers' collection.
        GetProviders()
        
    End Sub 'Main 

End Class 'UsingProtectedConfiguration
 
using System;
using System.Configuration;
using System.Collections;
using System.Security.Permissions;

namespace Samples.AspNet
{
  
    // Show how to use the ProtectedConfiguration.
    public sealed class UsingProtectedConfiguration
    {
        
       

        [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);
           
            }
 
        }

       [PermissionSet(SecurityAction.Demand, Name="FullTrust")]    
    private static void
 GetProviderName()
        {
            // Get the current provider name.
            string dataProtectionProviderName =
               ProtectedConfiguration.DataProtectionProviderName;
            Console.WriteLine(
                "Data protection provider name: {0}",
                 dataProtectionProviderName);

            // Get the Rsa provider name.
            string rsaProviderName =
                ProtectedConfiguration.RsaProviderName;
            Console.WriteLine(
                "Rsa provider name: {0}",
                 rsaProviderName);

            // Get the protected section name.
            string protectedSectionName =
                ProtectedConfiguration.ProtectedDataSectionName;
            Console.WriteLine(
                "Protected section name: {0}",
                 protectedSectionName);


        }


        static void Main(string[]
 args)
        {

           
            // Get current and Rsa provider names.
            GetProviderName();

            // Get the providers' collection.
            GetProviders();
    

        }
    }    
}
継承階層継承階層
System.Object
  System.Configuration.ProtectedConfiguration
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照

ProtectedConfiguration フィールド


パブリック フィールドパブリック フィールド

  名前 説明
パブリック フィールド DataProtectionProviderName データ保護プロバイダの名前。
パブリック フィールド ProtectedDataSectionName 保護されデータ セクションの名前。
パブリック フィールド RsaProviderName RSA プロバイダの名前。
参照参照

関連項目

ProtectedConfiguration クラス
System.Configuration 名前空間
ProtectedConfigurationProvider
ProtectedConfigurationSection

その他の技術情報

保護され構成概要
保護され構成使用した構成情報の暗号化

ProtectedConfiguration プロパティ


パブリック プロパティパブリック プロパティ

参照参照

関連項目

ProtectedConfiguration クラス
System.Configuration 名前空間
ProtectedConfigurationProvider
ProtectedConfigurationSection

その他の技術情報

保護され構成概要
保護され構成使用した構成情報の暗号化

ProtectedConfiguration メソッド


パブリック メソッドパブリック メソッド

プロテクト メソッドプロテクト メソッド
参照参照

関連項目

ProtectedConfiguration クラス
System.Configuration 名前空間
ProtectedConfigurationProvider
ProtectedConfigurationSection

その他の技術情報

保護され構成概要
保護され構成使用した構成情報の暗号化

ProtectedConfiguration メンバ

現在のアプリケーション構成ファイルに対して保護され構成プロバイダへのアクセス提供します

ProtectedConfiguration データ型公開されるメンバを以下の表に示します


パブリック フィールドパブリック フィールド
  名前 説明
パブリック フィールド DataProtectionProviderName データ保護プロバイダの名前。
パブリック フィールド ProtectedDataSectionName 保護されデータ セクションの名前。
パブリック フィールド RsaProviderName RSA プロバイダの名前。
パブリック プロパティパブリック プロパティ
パブリック メソッドパブリック メソッド
プロテクト メソッドプロテクト メソッド
参照参照

関連項目

ProtectedConfiguration クラス
System.Configuration 名前空間
ProtectedConfigurationProvider
ProtectedConfigurationSection

その他の技術情報

保護され構成概要
保護され構成使用した構成情報の暗号化


このページでは「.NET Framework クラス ライブラリ リファレンス」からProtectedConfigurationを検索した結果を表示しています。
Weblioに収録されているすべての辞書からProtectedConfigurationを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からProtectedConfiguration を検索

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

辞書ショートカット

すべての辞書の索引

「ProtectedConfiguration」の関連用語

ProtectedConfigurationのお隣キーワード
検索ランキング

   

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



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

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

©2025 GRAS Group, Inc.RSS