다음을 통해 공유


SecurityPolicySection.TrustLevels 속성

정의

TrustLevels 컬렉션을 가져옵니다.

public:
 property System::Web::Configuration::TrustLevelCollection ^ TrustLevels { System::Web::Configuration::TrustLevelCollection ^ get(); };
[System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)]
public System.Web.Configuration.TrustLevelCollection TrustLevels { get; }
[<System.Configuration.ConfigurationProperty("", IsDefaultCollection=true)>]
member this.TrustLevels : System.Web.Configuration.TrustLevelCollection
Public ReadOnly Property TrustLevels As TrustLevelCollection

속성 값

TrustLevels 개체의 컬렉션입니다.

특성

예제

다음 코드 예제를 사용 하는 방법에 설명 합니다 TrustLevels 속성을 구성 파일에는 신뢰 수준 요소를 추가 하 고 구성 파일을 업데이트 합니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 SecurityPolicySection 클래스입니다.

// Display elements of the TrustLevels collection property.
for (int i = 0; i < configSection.TrustLevels.Count; i++) 
{
  Console.WriteLine();
  Console.WriteLine("TrustLevel {0}:", i);
  Console.WriteLine("Name: {0}", 
    configSection.TrustLevels.Get(i).Name);
  Console.WriteLine("Type: {0}", 
    configSection.TrustLevels.Get(i).PolicyFile);
}

// Add a TrustLevel element to the configuration file.
configSection.TrustLevels.Add(new TrustLevel("myTrust", "mytrust.config"));
' Display elements of the TrustLevels collection property.
For i As Integer = 0 To (configSection.TrustLevels.Count - 1)
  Console.WriteLine()
  Console.WriteLine("TrustLevel {0}:", i)
  Console.WriteLine("Name: {0}", _
   configSection.TrustLevels.Get(i).Name)
  Console.WriteLine("Type: {0}", _
   configSection.TrustLevels.Get(i).PolicyFile)
Next i

' Add a TrustLevel element to the configuration file.
configSection.TrustLevels.Add(New TrustLevel("myTrust", "mytrust.config"))

설명

기본값을 합니다 TrustLevels 속성은 Full, High, MediumLow, 및 Minimal합니다. 항목을 TrustLevels 컬렉션에는 각 보안 수준 이름 및 연결 된 정책 파일을 지정 합니다. 지정 된 파일에 매핑된 사용자 고유의 명명 된 신뢰 수준 요소를 제공 하 여 보안 시스템을 확장할 수 있습니다는 policyFile 특성입니다. 신뢰 수준 요소를 만드는 방법에 대 한 자세한 내용은 securityPolicy (ASP.NET 설정 스키마)에 대 한 trustLevel 요소합니다.

적용 대상