Proprietà ID
Gets the ID value that uniquely identifies the computer.
Spazio dei nomi Microsoft.SqlServer.Management.Utility
Assembly: Microsoft.SqlServer.Management.Utility (in Microsoft.SqlServer.Management.Utility.dll)
Sintassi
'Dichiarazione
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
Public Property ID As Integer
Get
Friend Set
'Utilizzo
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)
Valore proprietà
Tipo: System. . :: . .Int32
A Int32 value that specifies the ID value that uniquely identifies the computer.
Esempi
VC#
System.Console.WriteLine(computer.ID);
VB
System.Console.WriteLine(computer.ID)
PowerShell
Write-Host $computer.ID