Свойство Server.BrowserServiceAccount
Gets the service account that the Browser service runs under on the instance of SQL Server.
Пространство имен: Microsoft.SqlServer.Management.Smo
Сборка: Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)
Синтаксис
'Декларация
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Expensive Or SfcPropertyFlags.Standalone)> _
Public ReadOnly Property BrowserServiceAccount As String
Get
'Применение
Dim instance As Server
Dim value As String
value = instance.BrowserServiceAccount
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)]
public string BrowserServiceAccount { get; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Expensive|SfcPropertyFlags::Standalone)]
public:
property String^ BrowserServiceAccount {
String^ get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)>]
member BrowserServiceAccount : string
function get BrowserServiceAccount () : String
Значение свойства
Тип: System.String
A String object that specifies the SQL Server Browser service account on the instance of SQL Server.
Замечания
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
См. также
Справочник
Пространство имен Microsoft.SqlServer.Management.Smo