TrustLevelCollection.Add(TrustLevel) 方法

定义

TrustLevel 对象添加到集合中。

public:
 void Add(System::Web::Configuration::TrustLevel ^ trustLevel);
public void Add (System.Web.Configuration.TrustLevel trustLevel);
member this.Add : System.Web.Configuration.TrustLevel -> unit
Public Sub Add (trustLevel As TrustLevel)

参数

trustLevel
TrustLevel

要添加到集合中的 TrustLevel

示例

下面的代码示例演示如何使用 Add 方法。 此代码示例是为 TrustLevelCollection 类提供的一个更大示例的一部分。

// Add a new TrustLevel to the collection.
TrustLevelCollection1.Add(new TrustLevel("Level1", "Level1.config"));
' Add a new TrustLevel to the collection.
TrustLevelCollection1.Add(New TrustLevel("Level1", "Level1.config"))

适用于