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 に変換します。 |
適用対象
こちらもご覧ください
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET