ConfigurationElement.SetAttributeValue(String, Object) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定指定屬性的值。
public:
void SetAttributeValue(System::String ^ attributeName, System::Object ^ value);
public void SetAttributeValue (string attributeName, object value);
member this.SetAttributeValue : string * obj -> unit
Public Sub SetAttributeValue (attributeName As String, value As Object)
參數
- attributeName
- String
要變更的屬性名稱。
- value
- Object
屬性的新值。
例外狀況
attributeName
參數是 null
或空白。
範例
下列範例會修改名稱為 「TestDemo」 的專案。 此值會修改為 「TestDemo (修改) 」。
// Use any of the following lines to set the attribute value.
// attribute.Value = "TestDemo(Modified)";
moduleproviderelement.SetAttributeValue(
"name", "TestDemo(Modified)");
// moduleproviderelement["name"] = "TestDemo(Modified)";
備註
這個方法會設定屬性值,並將它寫入Administration.config檔案。 在呼叫 方法之前 CommitChanges ,不會修改Administration.config檔案。
您也可以使用 Item[] 或 Value 屬性來設定屬性值。 為了獲得最佳系統效能,您應該使用 SetAttributeValue 方法。