TrustLevel クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
名前付きポリシー ファイルへの特定のセキュリティ レベルの割り当てを定義します。 このクラスは継承できません。
public ref class TrustLevel sealed : System::Configuration::ConfigurationElement
public sealed class TrustLevel : System.Configuration.ConfigurationElement
type TrustLevel = class
inherit ConfigurationElement
Public NotInheritable Class TrustLevel
Inherits ConfigurationElement
- 継承
例
次のコード例では、 型の使用方法を TrustLevel 示します。
#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 UsingTrustLevel
{
static void Main(string[] args)
{
try
{
// Display title.
Console.WriteLine("ASP.NET TrustLevel Info");
Console.WriteLine();
// Instantiate a new TrustLevel object.
TrustLevel TrustLevel1 =
new TrustLevel("myLevel1", "myLevel1.config");
// Get the Name of the TrustLevel object.
Console.WriteLine("Name: {0}", TrustLevel1.Name);
// Instantiate a new TrustLevel object.
TrustLevel TrustLevel2 =
new TrustLevel("myLevel2", "myLevel2.config");
// Get the PolicyFile of the TrustLevel object.
Console.WriteLine("PolicyFile: {0}", TrustLevel2.PolicyFile);
}
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 UsingTrustLevel
Public Shared Sub Main()
Try
' Display title.
Console.WriteLine("ASP.NET TrustLevel Info")
Console.WriteLine()
' Instantiate a new TrustLevel object.
Dim TrustLevel1 As TrustLevel = _
New TrustLevel("myLevel1", "myLevel1.config")
' Get the Name of the TrustLevel object.
Console.WriteLine("Name: {0}", TrustLevel1.Name)
' Instantiate a new TrustLevel object.
Dim TrustLevel2 As TrustLevel = _
New TrustLevel("myLevel2", "myLevel2.config")
' Get the PolicyFile of the TrustLevel object.
Console.WriteLine("PolicyFile: {0}", TrustLevel2.PolicyFile)
Catch e As Exception
' Unknown error.
Console.WriteLine(e.ToString())
End Try
' Display and wait.
Console.ReadLine()
End Sub
End Class
End Namespace
注釈
属性で指定されたファイルにマップされる独自の名前付き TrustLevel オブジェクトを作成することで、Web アプリケーションのセキュリティを policyFile
拡張できます。
コンストラクター
TrustLevel(String, String) |
指定の値に基づいて初期化される TrustLevel クラスのインスタンスを作成します。この値が、名前付きポリシー ファイルへの特定のセキュリティ レベルの割り当てを定義します。 |
プロパティ
メソッド
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET