TrustLevelCollection.Add(TrustLevel) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 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"))