Partager via


Propriété ID

Gets the ID value that uniquely identifies the computer.

Espace de noms :  Microsoft.SqlServer.Management.Utility
Assembly :  Microsoft.SqlServer.Management.Utility (en Microsoft.SqlServer.Management.Utility.dll)

Syntaxe

'Déclaration
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
Public Property ID As Integer
    Get
    Friend Set
'Utilisation
Dim instance As Computer
Dim value As Integer

value = instance.ID
[SfcPropertyAttribute(SfcPropertyFlags.Data)]
public int ID { get; internal set; }
[SfcPropertyAttribute(SfcPropertyFlags::Data)]
public:
property int ID {
    int get ();
    internal: void set (int value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Data)>]
member ID : int with get, internal set
function get ID () : int
internal function set ID (value : int)

Valeur de propriété

Type : System. . :: . .Int32
A Int32 value that specifies the ID value that uniquely identifies the computer.

Exemples

VC#

System.Console.WriteLine(computer.ID);

VB

System.Console.WriteLine(computer.ID)

PowerShell

Write-Host $computer.ID