共用方式為


IMemberCreationService.UpdateProperty 方法

定義

將新名稱和型別設定為指定類別的屬性。

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

字串,其中包含屬性的現有名稱。

oldPropertyType
Type

與現有屬性關聯的 Type

newPropertyName
String

字串,其中包含屬性的新名稱。

newPropertyType
Type

要與屬性之更新版本關聯的 Type

attributes
AttributeInfo[]

AttributeInfo 陣列,其中包含要指定給更新屬性 (Property) 的所有屬性 (Attribute) 資訊。

emitDependencyProperty
Boolean

如果要更新屬性以發出相依性屬性則為 true,否則為 false

isMetaProperty
Boolean

如果要將屬性設為中繼屬性則為 true,否則為 false

適用於