IMemberCreationService.CreateEvent 方法

定义

使用指定的事件名称、事件类型和属性在指定类上创建一个事件。

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

参数

className
String

一个字符串,其中包含事件所要添加到的类名称。

eventName
String

定义事件的名称的字符串。

eventType
Type

分配给事件的 Type

attributes
AttributeInfo[]

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

emitDependencyProperty
Boolean

true 则发出与事件关联的任何依赖项属性;否则为 false

适用于