ConfigurationElement.SetPropertyValue 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将属性设置为指定值。
protected:
void SetPropertyValue(System::Configuration::ConfigurationProperty ^ prop, System::Object ^ value, bool ignoreLocks);
protected void SetPropertyValue (System.Configuration.ConfigurationProperty prop, object value, bool ignoreLocks);
member this.SetPropertyValue : System.Configuration.ConfigurationProperty * obj * bool -> unit
Protected Sub SetPropertyValue (prop As ConfigurationProperty, value As Object, ignoreLocks As Boolean)
参数
要设置的元素属性。
- value
- Object
要分配给属性的值。
- ignoreLocks
- Boolean
如果应忽略对属性的锁定,则为 true
;否则为 false
。
例外
元素为只读时,或者 ignoreLocks
为 true
但不能忽略锁定时发生。