Compartilhar via


Propriedade do RDL EventInfo.CapabilitiesDesc

Gets a string value that represents the capabilities description.

Namespace:  Microsoft.SqlServer.Management.XEvent
Assembly:  Microsoft.SqlServer.Management.XEvent (em Microsoft.SqlServer.Management.XEvent.dll)

Sintaxe

'Declaração
<SfcPropertyAttribute(SfcPropertyFlags.Required)> _
Public ReadOnly Property CapabilitiesDesc As String 
    Get
'Uso
Dim instance As EventInfo 
Dim value As String 

value = instance.CapabilitiesDesc
[SfcPropertyAttribute(SfcPropertyFlags.Required)]
public string CapabilitiesDesc { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Required)]
public:
property String^ CapabilitiesDesc {
    String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Required)>]
member CapabilitiesDesc : string
function get CapabilitiesDesc () : String

Valor da propriedade

Tipo: System.String
A string value that contains the capabilities description.

Comentários

You can get the capabilities integers and their descriptions by running the following query.

select distinct(capabilities_desc) from
sys.dm_xe_objects where object_type='Event'

Consulte também

Referência

EventInfo Classe

Namespace Microsoft.SqlServer.Management.XEvent