Action Constructor (Event, String)
Initializes a new instance of the Action class with parent XEvent object and the name in form of eventModuleId.packagename.eventname or packagename.eventname.
Espacio de nombres: Microsoft.SqlServer.Management.XEvent
Ensamblado: Microsoft.SqlServer.Management.XEvent (en Microsoft.SqlServer.Management.XEvent.dll)
Sintaxis
'Declaración
Public Sub New ( _
parent As Event, _
name As String _
)
'Uso
Dim parent As Event
Dim name As String
Dim instance As New Action(parent, _
name)
public Action(
Event parent,
string name
)
public:
Action(
Event^ parent,
String^ name
)
new :
parent:Event *
name:string -> Action
public function Action(
parent : Event,
name : String
)
Parámetros
- parent
Tipo: Microsoft.SqlServer.Management.XEvent.Event
The parent object of the XEventobject.
- name
Tipo: System.String
The name as an eventModuleId.packagename.eventname object or packagename.eventname object.
Excepciones
Excepción | Condición |
---|---|
ArgumentNullException | Parameter name is null. |
XEventException | The event name is malformed or wrong. |
NullReferenceException | The parent, or grandparent, of the XEvent object is not set. |