Partilhar via


Método Server.PingSqlServerVersion (String)

Gets the version number of the instance of SQL Server.

Namespace:  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)

Sintaxe

'Declaração
Public Function PingSqlServerVersion ( _
    serverName As String _
) As ServerVersion
'Uso
Dim instance As Server 
Dim serverName As String 
Dim returnValue As ServerVersion 

returnValue = instance.PingSqlServerVersion(serverName)
public ServerVersion PingSqlServerVersion(
    string serverName
)
public:
ServerVersion^ PingSqlServerVersion(
    String^ serverName
)
member PingSqlServerVersion : 
        serverName:string -> ServerVersion
public function PingSqlServerVersion(
    serverName : String
) : ServerVersion

Parâmetros

  • serverName
    Tipo: System.String
    A String value that specifies the name of the instance of SQL Server.

Valor de retorno

Tipo: Microsoft.SqlServer.Management.Common.ServerVersion
A ServerVersion object value that specifies the version of the instance of SQL Server.

Exemplos

C#

Server srv = new Server("(local)");
Console.WriteLine(srv.PingSqlServerVersion("(local)"));

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host $srv.PingSqlServerVersion("(local)")

Consulte também

Referência

Server Classe

Sobrecarregado PingSqlServerVersion

Namespace Microsoft.SqlServer.Management.Smo

Outros recursos

Chamando métodos

Gerenciando servidores