Condividi tramite


Proprietà CategoryID

Gets the ID value that uniquely identifies the job category.

Spazio dei nomi  Microsoft.SqlServer.Management.Smo.Agent
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Sintassi

'Dichiarazione
<SfcKeyAttribute()> _
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property CategoryID As Integer
    Get
'Utilizzo
Dim instance As Job
Dim value As Integer

value = instance.CategoryID
[SfcKeyAttribute()]
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public int CategoryID { get; }
[SfcKeyAttribute()]
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property int CategoryID {
    int get ();
}
[<SfcKeyAttribute()>]
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member CategoryID : int
function get CategoryID () : int

Valore proprietà

Tipo: System. . :: . .Int32
A In32 value that specifies the job category ID value.

Osservazioni

The ID value references the category to which the job belongs. You can define the category using the JobCategory object.

Esempi

The following code example specifies that the job belongs to category 1.

C#

Job jb = new Job();
jb.CategoryID = 1;

PowerShell

$jb = new-object Microsoft.SqlServer.Management.Smo.Agent.Job
$jb.CategoryID = 1