共用方式為


ConfigurationElement.SetAttributeValue(String, Object) 方法

定義

設定指定屬性的值。

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 方法。

適用於

另請參閱