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

TrustSection クラス

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

アプリケーション適用されるコード アクセス セキュリティ レベル構成します。このクラス継承できません。

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

Public NotInheritable Class
 TrustSection
    Inherits ConfigurationSection
public sealed class TrustSection : ConfigurationSection
public ref class TrustSection sealed : public
 ConfigurationSection
public final class TrustSection extends ConfigurationSection
public final class TrustSection extends
 ConfigurationSection
解説解説
使用例使用例

このセクションには、2 つコード例用意されています。最初の例では、TrustSection クラス複数プロパティに対して宣言によって値を指定する方法示してます。2 番目の例では、TrustSection 型の使用方法示してます。

次の構成ファイルの例では、TrustSection クラス複数プロパティに対して宣言によって値を指定する方法示してます。

<system.web>
  <trust level="Full" originUrl=""/>
</system.web>

TrustSection 型を使用する方法次のコード例示します

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

Namespace Samples.Aspnet.SystemWebConfiguration
  Class UsingTrustSection
    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.TrustSection
 = _
        CType(config.GetSection("system.web/trust"),
 _
        System.Web.Configuration.TrustSection)

        ' 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 Level property.
        Console.WriteLine("Level: {0}", configSection.Level)

        ' Set Level property.
        configSection.Level = "High"

        ' Display OriginUrl property.
        Console.WriteLine("Origin Url: {0}", configSection.OriginUrl)

        ' Set OriginUrl property.
        configSection.OriginUrl = ""

        ' 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 UsingTrustSection
  {
    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.
        TrustSection configSection = (TrustSection)config.GetSection("system.web/trust");

        // 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 Level property
        Console.WriteLine("Level: {0}", configSection.Level);

        // Set Level property
        configSection.Level = "Full";

        // Display OriginUrl property
        Console.WriteLine("Origin Url: {0}", configSection.OriginUrl);

        // Set OriginUrl property
        configSection.OriginUrl = "";

        // 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.TrustSection
スレッド セーフスレッド セーフ
この型の public static (Visual Basic では Shared) メンバはすべて、スレッド セーフです。インスタンス メンバ場合は、スレッド セーフであるとは限りません。
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
TrustSection メンバ
System.Web.Configuration 名前空間
ConfigurationSection
TrustLevel クラス



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

辞書ショートカット

すべての辞書の索引

「TrustSection クラス」の関連用語

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

   

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



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

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

©2025 GRAS Group, Inc.RSS