Proprietà ProcessID
Gets the ID value that uniquely identifies the process associated with the referenced connection to the server.
Spazio dei nomi Microsoft.SqlServer.Management.Common
Assembly: Microsoft.SqlServer.ConnectionInfo (in Microsoft.SqlServer.ConnectionInfo.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property ProcessID As Integer
Get
'Utilizzo
Dim instance As ServerConnection
Dim value As Integer
value = instance.ProcessID
public int ProcessID { get; }
public:
property int ProcessID {
int get ();
}
member ProcessID : int
function get ProcessID () : int
Valore proprietà
Tipo: System. . :: . .Int32
An Int32 value that specifies the ID value that uniquely identifies the process associated with the referenced connection to the server.
Esempi
C#
ServerConnection conn = new ServerConnection();
Console.WriteLine(conn.ProcessID);
PowerShell
$conn = new-object Microsoft.SqlServer.Management.Common.ServerConnection
Write-Host $conn.ProcessID
Vedere anche