IMemberCreationService.UpdateProperty 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將新名稱和型別設定為指定類別的屬性。
public:
void UpdateProperty(System::String ^ className, System::String ^ oldPropertyName, Type ^ oldPropertyType, System::String ^ newPropertyName, Type ^ newPropertyType, cli::array <System::Workflow::ComponentModel::Compiler::AttributeInfo ^> ^ attributes, bool emitDependencyProperty, bool isMetaProperty);
public void UpdateProperty (string className, string oldPropertyName, Type oldPropertyType, string newPropertyName, Type newPropertyType, System.Workflow.ComponentModel.Compiler.AttributeInfo[] attributes, bool emitDependencyProperty, bool isMetaProperty);
abstract member UpdateProperty : string * string * Type * string * Type * System.Workflow.ComponentModel.Compiler.AttributeInfo[] * bool * bool -> unit
Public Sub UpdateProperty (className As String, oldPropertyName As String, oldPropertyType As Type, newPropertyName As String, newPropertyType As Type, attributes As AttributeInfo(), emitDependencyProperty As Boolean, isMetaProperty As Boolean)
參數
- className
- String
字串,其中包含要更新之屬性所在的類別名稱。
- oldPropertyName
- String
字串,其中包含屬性的現有名稱。
- newPropertyName
- String
字串,其中包含屬性的新名稱。
- attributes
- AttributeInfo[]
AttributeInfo 陣列,其中包含要指定給更新屬性 (Property) 的所有屬性 (Attribute) 資訊。
- emitDependencyProperty
- Boolean
如果要更新屬性以發出相依性屬性則為 true
,否則為 false
。
- isMetaProperty
- Boolean
如果要將屬性設為中繼屬性則為 true
,否則為 false
。