Condividi tramite


Proprietà BrowserServiceAccount

Ottiene l'account del servizio utilizzato per l'esecuzione del servizio Browser nell'istanza di SQL Server.

Spazio dei nomi  Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Sintassi

'Dichiarazione
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property BrowserServiceAccount As String
    Get
'Utilizzo
Dim instance As Server
Dim value As String

value = instance.BrowserServiceAccount
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public string BrowserServiceAccount { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property String^ BrowserServiceAccount {
    String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member BrowserServiceAccount : string
function get BrowserServiceAccount () : String

Valore proprietà

Tipo: System. . :: . .String
Oggetto String che specifica l'account del servizio utilizzato per l'esecuzione del servizio SQL Server Browser nell'istanza di SQL Server.

Osservazioni

SQL Server Browser provides SQL Server connection information to client computers and is shared across multiple SQL Server and Integration Services instances.

Esempi

C#

Server srv = new Server("(local)");
Console.WriteLine("The browser service account is " + srv.BrowserServiceAccount);

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "The browser service account is" $srv.BrowserServiceAccount