Share via


BrowserServiceAccount 屬性

取得 SQL Server 執行個體上用於執行 Browser 服務的服務帳戶。

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property BrowserServiceAccount As String
    Get
'用途
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

屬性值

型別:System. . :: . .String
String 物件,指定 SQL Server 執行個體上 SQL Server Browser 服務的服務帳戶。

備註

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

範例

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