Udostępnij za pośrednictwem


Właściwość CategoryID

Pobiera wartość Identyfikatora, który unikatowo identyfikuje kategorii zadanie.

Przestrzeń nazw:  Microsoft.SqlServer.Management.Smo.Agent
Zestaw:  Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)

Syntax

'Deklaracja
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
<SfcKeyAttribute()> _
Public ReadOnly Property CategoryID As Integer
    Get
'Użycie
Dim instance As Job
Dim value As Integer

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

Wartość właściwości

Typ: System. . :: . .Int32
A In32 wartość, która określa wartość Identyfikatora kategorii zadanie.

Uwagi

Wartość identyfikator odwołuje się do kategorii, do której należy dane zadanie.Można zdefiniować za pomocą kategorii JobCategory obiektu.

Przykłady

Poniższy przykład kodu Określa, że zadanie należy do kategorii 1.

C#

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

PowerShell

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