다음을 통해 공유


TrustLevelCollection.Get(Int32) 메서드

정의

지정된 인덱스의 TrustLevel 개체를 가져옵니다.

public:
 System::Web::Configuration::TrustLevel ^ Get(int index);
public System.Web.Configuration.TrustLevel Get (int index);
member this.Get : int -> System.Web.Configuration.TrustLevel
Public Function Get (index As Integer) As TrustLevel

매개 변수

index
Int32

TrustLevelCollection의 인덱스입니다.

반환

TrustLevel

지정한 인덱스에 있는 TrustLevel입니다.

예제

다음 코드 예제에서는 Get 메서드를 사용하는 방법을 보여 줍니다. 이 코드 예제는에 대해 제공 된 큰 예제의 일부는 TrustLevelCollection 클래스입니다.

// 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();
}
' 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

적용 대상