言語

Action コンストラクター

定義

オーバーロード

名前 説明
Action()

Action クラスの新しいインスタンスを初期化します。

Action(Event, ActionInfo)

ActionInfo のインスタンスから Action クラスの新しいインスタンスを初期化します。

Action(Event, String)

指定された親と名前を使用して、 Action クラスの新しいインスタンスを初期化します。 ここでの名前は、eventModuleId.packagename.eventname または packagename.eventname の形式である必要があります。

Action()

Action クラスの新しいインスタンスを初期化します。

public Action();
Public Sub New ()

適用対象

Action(Event, ActionInfo)

ActionInfo のインスタンスから Action クラスの新しいインスタンスを初期化します。

public Action(Microsoft.SqlServer.Management.XEvent.Event parent, Microsoft.SqlServer.Management.XEvent.ActionInfo actionInfo);
new Microsoft.SqlServer.Management.XEvent.Action : Microsoft.SqlServer.Management.XEvent.Event * Microsoft.SqlServer.Management.XEvent.ActionInfo -> Microsoft.SqlServer.Management.XEvent.Action
Public Sub New (parent As Event, actionInfo As ActionInfo)

パラメーター

parent
Event

親。

actionInfo
ActionInfo

ActionInfo オブジェクト。

適用対象

Action(Event, String)

指定された親と名前を使用して、 Action クラスの新しいインスタンスを初期化します。 ここでの名前は、eventModuleId.packagename.eventname または packagename.eventname の形式である必要があります。

public Action(Microsoft.SqlServer.Management.XEvent.Event parent, string name);
new Microsoft.SqlServer.Management.XEvent.Action : Microsoft.SqlServer.Management.XEvent.Event * string -> Microsoft.SqlServer.Management.XEvent.Action
Public Sub New (parent As Event, name As String)

パラメーター

parent
Event

親。

name
String

名前。

例外

イベント名の形式が正しくないか、間違っています。

パラメーター名が null です。

イベントの親(または祖父母)はまだ設定されていません。

適用対象