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

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

SecurityPolicySection クラス

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

Web アプリケーションセキュリティ インフラストラクチャサポートするために使用される構成設定定義します。このクラス継承できません。

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

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

この例では、securityPolicy セクションに対して宣言によって値を指定する方法示してます。このセクションには、SecurityPolicySection クラスメンバとしてもアクセスできます

次の構成ファイルの例では、securityPolicy セクションに対して宣言によって値を指定する方法示してます。

<system.web>
  <securityPolicy>
    <trustLevel name="Full" policyFile="internal" />
    <trustLevel name="High" policyFile="web_hightrust.config" />
    <trustLevel name="Medium" policyFile="web_mediumtrust.config" />
    <trustLevel name="Low" policyFile="web_lowtrust.config" />
    <trustLevel name="Minimal" policyFile="web_minimaltrust.config" />
  </securityPolicy>
</system.web>

SecurityPolicySection クラス使用する方法次のコード例示します

Imports System
Imports System.Collections.Generic
Imports System.Text
Imports System.Configuration
Imports System.Web
Imports System.Web.Configuration

Namespace Samples.Aspnet.SystemWebConfiguration
  Class UsingSecurityPolicySection
    Public Shared Sub Main()
      Try
        ' Set the path of the config file.
        Dim configPath As String
 = ""

        ' Get the Web application configuration object.
        Dim config As System.Configuration.Configuration
 = _
         System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration(configPath)

                ' Get the section-related object.
        Dim configSection As System.Web.Configuration.SecurityPolicySection
 = _
         CType(config.GetSection("system.web/securityPolicy"),
 _
         System.Web.Configuration.SecurityPolicySection)

        ' Display title and info.
        Console.WriteLine("ASP.NET Configuration Info")
        Console.WriteLine()

        ' Display Config details.
        Console.WriteLine("File Path: {0}", config.FilePath)
        Console.WriteLine("Section Path: {0}", configSection.SectionInformation.Name)

                ' Display the number of trust levels.
        Console.WriteLine("TrustLevels Collection Count: {0}",
 _
          configSection.TrustLevels.Count)

        ' Display elements of the TrustLevels collection property.
        For i As Integer
 = 0 To (configSection.TrustLevels.Count - 1)
          Console.WriteLine()
          Console.WriteLine("TrustLevel {0}:", i)
          Console.WriteLine("Name: {0}", _
           configSection.TrustLevels.Get(i).Name)
          Console.WriteLine("Type: {0}", _
           configSection.TrustLevels.Get(i).PolicyFile)
        Next i

        ' Add a TrustLevel element to the configuration file.
        configSection.TrustLevels.Add(New TrustLevel("myTrust",
 "mytrust.config"))

        ' Update if not locked.
        If Not configSection.SectionInformation.IsLocked
 Then
          config.Save()
          Console.WriteLine("** Configuration updated.")
        Else
                    Console.WriteLine("** Could not update; section
 is locked.")
        End If

      Catch e As Exception
        ' Unknown error.
        Console.WriteLine(e.ToString())
      End Try

      ' Display and wait
      Console.ReadLine()
    End Sub
  End Class
End Namespace
#region Using directives

using System;
using System.Collections.Generic;
using System.Text;
using System.Configuration;
using System.Web;
using System.Web.Configuration;

#endregion

namespace Samples.Aspnet.SystemWebConfiguration
{
  class UsingSecurityPolicySection
  {
    static void Main(string[]
 args)
    {
      try
      {
        // Set the path of the config file.
        string configPath = "";

        // Get the Web application configuration object.
        Configuration config = 
          WebConfigurationManager.OpenWebConfiguration(configPath);

        // Get the section-related object.
        SecurityPolicySection configSection =
          (SecurityPolicySection)config.GetSection("system.web/securityPolicy");

        // Display title and info.
        Console.WriteLine("ASP.NET Configuration Info");
        Console.WriteLine();

        // Display Config details.
        Console.WriteLine("File Path: {0}",
          config.FilePath);
        Console.WriteLine("Section Path: {0}",
          configSection.SectionInformation.Name);

        // Display the number of trust levels.
        Console.WriteLine("TrustLevels Collection Count: {0}",
          configSection.TrustLevels.Count);

        // Display elements of the TrustLevels collection property.
        for (int i = 0; i < configSection.TrustLevels.Count;
 i++) 
        {
          Console.WriteLine();
          Console.WriteLine("TrustLevel {0}:", i);
          Console.WriteLine("Name: {0}", 
            configSection.TrustLevels.Get(i).Name);
          Console.WriteLine("Type: {0}", 
            configSection.TrustLevels.Get(i).PolicyFile);
        }

        // Add a TrustLevel element to the configuration file.
        configSection.TrustLevels.Add(new TrustLevel("myTrust",
 "mytrust.config"));

        // Update if not locked.
        if (!configSection.SectionInformation.IsLocked)
        {
          config.Save();
          Console.WriteLine("** Configuration updated.");
        }
        else
        {
          Console.WriteLine("** Could not update; section is locked.");
        }
      }

      catch (Exception e)
      {
        // Unknown error.
        Console.WriteLine(e.ToString());
      }

      // Display and wait
      Console.ReadLine();
    }
  }
}
継承階層継承階層
System.Object
   System.Configuration.ConfigurationElement
     System.Configuration.ConfigurationSection
      System.Web.Configuration.SecurityPolicySection
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
SecurityPolicySection メンバ
System.Web.Configuration 名前空間
ConfigurationSection
その他の技術情報
securityPolicy 要素 (ASP.NET 設定スキーマ)



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

辞書ショートカット

すべての辞書の索引

「SecurityPolicySection クラス」の関連用語

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

   

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



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

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

©2024 GRAS Group, Inc.RSS