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 네임스페이스