IMemberCreationService.UpdateEvent メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定したクラスの既存のイベントに新しい名前と種類を設定します。
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
既存のイベントの名前を含む文字列。
- newEventName
- String
更新されるイベントの新しい名前を含む文字列。
- attributes
- AttributeInfo[]
更新されるイベントに割り当てるすべての属性の情報が格納された AttributeInfo 配列。
- emitDependencyProperty
- Boolean
依存関係プロパティを出力するようにイベントを更新する場合は true
。それ以外の場合は false
。
- isMetaProperty
- Boolean
イベントをメタ プロパティとして設定する場合は true
。それ以外の場合は false
。