AuthorizationRuleCollection.Remove(AuthorizationRule) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從集合中移除一個 AuthorizationRule 物件。
public:
void Remove(System::Web::Configuration::AuthorizationRule ^ rule);
public void Remove(System.Web.Configuration.AuthorizationRule rule);
member this.Remove : System.Web.Configuration.AuthorizationRule -> unit
Public Sub Remove (rule As AuthorizationRule)
參數
- rule
- AuthorizationRule
AuthorizationRule要移除的物品。
例外狀況
傳出 AuthorizationRule 的物件不存在於集合中、元素已被移除,或集合是唯讀。
範例
下列程式代碼範例示範如何使用 Remove 方法。 參考課堂主題中的 AuthorizationSection 程式碼範例,學習如何取得該集合。
// Remove the rule from the collection.
authorizationSection.Rules.Remove(authorizationRule);
' Remove the rule from the collection.
authorizationSection.Rules.Remove(authorizationRule)
備註
此方法將元素插入 remove 設定檔中對應高階設定檔中定義的元素的適當區段。 如果該元素在目前設定檔的適當區段中被定義,該元素的條目會從設定檔中移除。 要移除的物件必須存在於集合中。