FormsAuthenticationUserCollection.Clear 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從集合中移除所有 FormsAuthenticationUser 物件。
public:
void Clear();
public void Clear ();
member this.Clear : unit -> unit
Public Sub Clear ()
例外狀況
集合是唯讀的。
範例
下列程式碼範例示範如何使用 Clear 方法。
// Using method Clear.
formsAuthenticationCredentials.Users.Clear();
// Update if not locked
if (!authenticationSection.SectionInformation.IsLocked)
{
configuration.Save();
}
' Using method Clear.
formsAuthenticationCredentials.Users.Clear()
' Update if not locked
If Not authenticationSection.SectionInformation.IsLocked Then
configuration.Save()
End If
備註
這個方法會將 clear
指示詞插入組態檔的適當區段中,以清除較高層級組態檔中定義之專案的所有參考。 移除目前組態檔適當區段中定義的所有元素。