SecurityPolicySection.TrustLevels 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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
, Medium
를 Low
, 및 Minimal
합니다. 항목을 TrustLevels 컬렉션에는 각 보안 수준 이름 및 연결 된 정책 파일을 지정 합니다. 지정 된 파일에 매핑된 사용자 고유의 명명 된 신뢰 수준 요소를 제공 하 여 보안 시스템을 확장할 수 있습니다는 policyFile
특성입니다. 신뢰 수준 요소를 만드는 방법에 대 한 자세한 내용은 securityPolicy (ASP.NET 설정 스키마)에 대 한 trustLevel 요소합니다.
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET