TrustSection クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリケーションに適用されるコード アクセス セキュリティ レベルを構成します。 このクラスは継承できません。
public ref class TrustSection sealed : System::Configuration::ConfigurationSection
public sealed class TrustSection : System.Configuration.ConfigurationSection
type TrustSection = class
inherit ConfigurationSection
Public NotInheritable Class TrustSection
Inherits ConfigurationSection
- 継承
例
このセクションでは、2 つのコード例を示します。 1 つ目は、クラスのいくつかのプロパティの値を宣言によって指定する方法を TrustSection 示しています。 2 つ目は、型の使用方法を TrustSection 示しています。
次の構成ファイルの例は、クラスのいくつかのプロパティの値を宣言によって指定する方法を TrustSection 示しています。
<system.web>
<trust level="Full" originUrl=""/>
</system.web>
次のコード例は、型の使用方法を TrustSection 示しています。
#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();
}
}
}
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
注釈
この TrustSection クラスを使用すると、構成ファイル <trust>
セクションにプログラムでアクセスして変更できます。 このセクションでは <trust>
、特定のアプリケーションの実行に使用されるコード アクセス セキュリティアクセス許可セットを構成します。 このセクションは、コンピューター、サイト、アプリケーション の各レベルで宣言できます。
コンストラクター
TrustSection() |
既定の設定を使用して TrustSection クラスの新しいインスタンスを初期化します。 |