SectionInformation.ProtectionProvider プロパティ

定義

関連付けられている構成セクションの保護された構成プロバイダーを取得します。

public:
 property System::Configuration::ProtectedConfigurationProvider ^ ProtectionProvider { System::Configuration::ProtectedConfigurationProvider ^ get(); };
public System.Configuration.ProtectedConfigurationProvider ProtectionProvider { get; }
member this.ProtectionProvider : System.Configuration.ProtectedConfigurationProvider
Public ReadOnly Property ProtectionProvider As ProtectedConfigurationProvider

プロパティ値

この ConfigurationSection オブジェクトの保護された構成プロバイダー。

次の例は、オブジェクトの値を取得する ProtectSection 方法を ConfigurationSection 示しています。

static public void GetProtectionProvider()
{
    SectionInformation sInfo =
        GetSectionInformation();

    ProtectedConfigurationProvider pp = 
        sInfo.ProtectionProvider;
    if (pp == null)
        Console.WriteLine("Protection provider is null");
    else
        Console.WriteLine("Protection provider: {0}", 
            pp.ToString());
}
Public Shared Sub GetProtectionProvider()

    Dim sInfo As SectionInformation = _
    GetSectionInformation()

    Dim pp _
    As ProtectedConfigurationProvider = _
    sInfo.ProtectionProvider
    If pp Is Nothing Then
        Console.WriteLine("Protection provider is null")
    Else
        Console.WriteLine("Protection provider: {0}", _
        pp.ToString())
    End If

End Sub

注釈

保護されていないセクションの場合、 ProtectionProvider プロパティは です null

保護された構成セクションの詳細については、「保護された構成 を使用した構成情報の暗号化」を参照してください。

適用対象

こちらもご覧ください