RuleSettingsCollection.Insert(Int32, RuleSettings) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將指定的 RuleSettings 物件加入集合中指定的索引點。
public:
void Insert(int index, System::Web::Configuration::RuleSettings ^ eventSettings);
public void Insert (int index, System.Web.Configuration.RuleSettings eventSettings);
member this.Insert : int * System.Web.Configuration.RuleSettings -> unit
Public Sub Insert (index As Integer, eventSettings As RuleSettings)
參數
- index
- Int32
集合中 RuleSettings 物件的有效索引。
- eventSettings
- RuleSettings
要插入集合的 RuleSettings 物件。
例外狀況
要加入的 RuleSettings 物件已經存在於集合中、索引無效,或者集合是唯讀的。
範例
下列程式碼範例示範如何使用 Insert 方法。 此程式碼範例是提供給 類別之較大範例的 HealthMonitoringSection 一部分。
// Insert an RuleSettings object into the Rules collection property.
healthMonitoringSection.Rules.Insert(1,
new RuleSettings("All Errors Default2",
"All Errors", "EventLogProvider"));
' Insert an RuleSettings object into the Rules collection property.
healthMonitoringSection.Rules.Insert(1, _
new RuleSettings("All Errors Default2", _
"All Errors", "EventLogProvider"))
備註
如果 index 參數等於集合中的專案數,則會將專案附加至集合結尾。