IMemberCreationService.UpdateEvent 方法

定义

将新名称和类型设置为指定类上的现有事件。

public:
 void UpdateEvent(System::String ^ className, System::String ^ oldEventName, Type ^ oldEventType, System::String ^ newEventName, Type ^ newEventType, cli::array <System::Workflow::ComponentModel::Compiler::AttributeInfo ^> ^ attributes, bool emitDependencyProperty, bool isMetaProperty);
public void UpdateEvent (string className, string oldEventName, Type oldEventType, string newEventName, Type newEventType, System.Workflow.ComponentModel.Compiler.AttributeInfo[] attributes, bool emitDependencyProperty, bool isMetaProperty);
abstract member UpdateEvent : string * string * Type * string * Type * System.Workflow.ComponentModel.Compiler.AttributeInfo[] * bool * bool -> unit
Public Sub UpdateEvent (className As String, oldEventName As String, oldEventType As Type, newEventName As String, newEventType As Type, attributes As AttributeInfo(), emitDependencyProperty As Boolean, isMetaProperty As Boolean)

参数

className
String

一个包含类名称的字符串,该类中包含要更新的事件。

oldEventName
String

一个字符串,其中包含现有事件的名称。

oldEventType
Type

与现有事件关联的 Type

newEventName
String

一个字符串,其中包含已更新的事件的新名称。

newEventType
Type

要与已更新的事件关联的 Type

attributes
AttributeInfo[]

一个 AttributeInfo 数组,其中包含有关要分配给已更新的事件的所有属性的信息。

emitDependencyProperty
Boolean

true 则更新事件以发出依赖项属性;否则为 false

isMetaProperty
Boolean

true 则将事件设置为元属性;否则为 false

适用于