ID 屬性
Gets the ID value that uniquely identifies the computer.
命名空間: Microsoft.SqlServer.Management.Utility
組件: Microsoft.SqlServer.Management.Utility (在 Microsoft.SqlServer.Management.Utility.dll 中)
語法
'宣告
<SfcPropertyAttribute(SfcPropertyFlags.Data)> _
Public Property ID As Integer
Get
Friend Set
'用途
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)
屬性值
型別:System. . :: . .Int32
A Int32 value that specifies the ID value that uniquely identifies the computer.
範例
VC#
System.Console.WriteLine(computer.ID);
VB
System.Console.WriteLine(computer.ID)
PowerShell
Write-Host $computer.ID