NameValueConfigurationCollection.Remove 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從集合中移除 NameValueConfigurationElement 物件。
多載
Remove(NameValueConfigurationElement) |
根據提供的參數,從集合中移除 NameValueConfigurationElement 物件。 |
Remove(String) |
根據提供的參數,從集合中移除 NameValueConfigurationElement 物件。 |
Remove(NameValueConfigurationElement)
根據提供的參數,從集合中移除 NameValueConfigurationElement 物件。
public:
void Remove(System::Configuration::NameValueConfigurationElement ^ nameValue);
public void Remove (System.Configuration.NameValueConfigurationElement nameValue);
member this.Remove : System.Configuration.NameValueConfigurationElement -> unit
Public Sub Remove (nameValue As NameValueConfigurationElement)
參數
- nameValue
- NameValueConfigurationElement
範例
下列程式碼範例會示範如何使用 Remove 方法。 此程式代碼範例是提供給 類別之較大範例的 NameValueConfigurationCollection 一部分。
// Remove domain from the collection.
NameValueConfigurationElement myConfigElement =
myNameValConfigCollection["domain"];
// Remove method.
myNameValConfigCollection.Remove(myConfigElement);
' Remove domain from the collection.
Dim myConfigElement As NameValueConfigurationElement = myNameValConfigCollection("domain")
' Remove method.
myNameValConfigCollection.Remove(myConfigElement)
備註
Remove使用 方法從集合中移除 NameValueConfigurationElement 。 如果移除專案時需要自訂行為,請在衍生類別中覆寫 。
適用於
Remove(String)
根據提供的參數,從集合中移除 NameValueConfigurationElement 物件。
public:
void Remove(System::String ^ name);
public void Remove (string name);
member this.Remove : string -> unit
Public Sub Remove (name As String)
參數
- name
- String
備註
Remove使用 方法從集合中移除 NameValueConfigurationElement 。 如果移除專案時需要自訂行為,請在衍生類別中覆寫 。