IMemberCreationService.CreateEvent 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定的事件名称、事件类型和属性在指定类上创建一个事件。
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
定义事件的名称的字符串。
- attributes
- AttributeInfo[]
一个 AttributeInfo 数组,其中包含有关要分配给事件的所有属性的信息。
- emitDependencyProperty
- Boolean
为 true
则发出与事件关联的任何依赖项属性;否则为 false
。