TrustSection クラス
アセンブリ: System.Web (system.web.dll 内)


TrustSection クラスを使用すると、構成ファイルの trust セクションにプログラムからアクセスして変更できます。trust セクションは、特定のアプリケーションの実行に使用されるコード アクセス セキュリティのアクセス許可セットを構成します。このセクションは、マシン、サイト、およびアプリケーションの各レベルで宣言できます。

このセクションには、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.Configuration.ConfigurationElement
System.Configuration.ConfigurationSection
System.Web.Configuration.TrustSection


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


- TrustSection クラスのページへのリンク