TrustLevelCollection 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
TrustLevel 개체의 컬렉션을 포함합니다. 이 클래스는 상속될 수 없습니다.
public ref class TrustLevelCollection sealed : System::Configuration::ConfigurationElementCollection
[System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.TrustLevel), AddItemName="trustLevel", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)]
public sealed class TrustLevelCollection : System.Configuration.ConfigurationElementCollection
[<System.Configuration.ConfigurationCollection(typeof(System.Web.Configuration.TrustLevel), AddItemName="trustLevel", CollectionType=System.Configuration.ConfigurationElementCollectionType.BasicMap)>]
type TrustLevelCollection = class
inherit ConfigurationElementCollection
Public NotInheritable Class TrustLevelCollection
Inherits ConfigurationElementCollection
- 상속
- 특성
예제
다음 코드 예제를 사용 하는 방법에 설명 합니다 TrustLevelCollection 클래스입니다.
#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 UsingTrustLevelCollection
{
static void Main(string[] args)
{
try
{
// Display title.
Console.WriteLine("ASP.NET TrustLevelCollection Info");
Console.WriteLine();
// Instantiate a new TrustLevelCollection object.
TrustLevelCollection TrustLevelCollection1 =
new TrustLevelCollection();
// Add a new TrustLevel to the collection.
TrustLevelCollection1.Add(new TrustLevel("Level1", "Level1.config"));
// Create a new TrustLevel object.
TrustLevel TrustLevel2 =
new TrustLevel("Level2", "Level2.config");
// Set the TrustLevel object within the collection.
TrustLevelCollection1.Set(1, TrustLevel2);
// Display item details of the collection.
for (int i = 0; i < TrustLevelCollection1.Count; i++)
{
Console.WriteLine("Collection item {0}", i);
Console.WriteLine("Name: {0}",
TrustLevelCollection1.Get(i).Name);
Console.WriteLine("PolicyFile: {0}",
TrustLevelCollection1.Get(i).PolicyFile);
Console.WriteLine();
}
}
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 UsingTrustLevelCollection
Public Shared Sub Main()
Try
' Display title.
Console.WriteLine("ASP.NET TrustLevelCollection Info")
Console.WriteLine()
' Instantiate a new TrustLevelCollection object.
Dim TrustLevelCollection1 As TrustLevelCollection = _
New TrustLevelCollection()
' Add a new TrustLevel to the collection.
TrustLevelCollection1.Add(New TrustLevel("Level1", "Level1.config"))
' Create a new TrustLevel object.
Dim TrustLevel2 As TrustLevel = _
New TrustLevel("myLevel2", "myLevel2.config")
' Set the TrustLevel object within the collection.
TrustLevelCollection1.Set(1, TrustLevel2)
' Display item details of the collection.
For i As Integer = 0 To (TrustLevelCollection1.Count - 1)
Console.WriteLine("Collection item {0}", i)
Console.WriteLine("Name: {0}", _
TrustLevelCollection1.Get(i).Name)
Console.WriteLine("PolicyFile: {0}", _
TrustLevelCollection1.Get(i).PolicyFile)
Console.WriteLine()
Next i
Catch e As Exception
' Unknown error.
Console.WriteLine(e.ToString())
End Try
' Display and wait.
Console.ReadLine()
End Sub
End Class
End Namespace
설명
TrustLevel 개체는 특정 보안 수준과 명명 된 정책 파일을 매핑할 사용 됩니다.
생성자
TrustLevelCollection() |
TrustLevelCollection 클래스의 새 인스턴스를 초기화합니다. |
속성
메서드
명시적 인터페이스 구현
ICollection.CopyTo(Array, Int32) |
ConfigurationElementCollection을 배열에 복사합니다. (다음에서 상속됨 ConfigurationElementCollection) |
확장 메서드
Cast<TResult>(IEnumerable) |
IEnumerable의 요소를 지정된 형식으로 캐스팅합니다. |
OfType<TResult>(IEnumerable) |
지정된 형식에 따라 IEnumerable의 요소를 필터링합니다. |
AsParallel(IEnumerable) |
쿼리를 병렬화할 수 있도록 합니다. |
AsQueryable(IEnumerable) |
IEnumerable을 IQueryable로 변환합니다. |