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 지정한 파일에 매핑되는 개체는 policyFile
특성입니다.
생성자
TrustLevel(String, String) |
제공된 값을 사용하여 초기화되는 TrustLevel 클래스의 인스턴스를 만듭니다. 이 값은 특정 보안 수준과 명명된 정책 파일 사이의 매핑을 정의합니다. |