Server.BrowserStartMode 属性

Gets the start mode for the SQL Server Browser Service running 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 BrowserStartMode As ServiceStartMode 
    Get
用法
Dim instance As Server 
Dim value As ServiceStartMode 

value = instance.BrowserStartMode
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)]
public ServiceStartMode BrowserStartMode { get; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Expensive|SfcPropertyFlags::Standalone)]
public:
property ServiceStartMode BrowserStartMode {
    ServiceStartMode get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)>]
member BrowserStartMode : ServiceStartMode
function get BrowserStartMode () : ServiceStartMode

属性值

类型:Microsoft.SqlServer.Management.Smo.ServiceStartMode
A ServiceStartMode object that specifies the start mode for the SQL Server Browser Service running on the instance of SQL Server.

注释

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

示例

C#

Server srv = new Server("(local)");
Console.WriteLine("The SQL browser start mode is: " + srv.BrowserStartMode.ToString());

PowerShell

$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "The SQL browser start mode is:" $srv.BrowserStartMode

请参阅

参考

Server 类

Microsoft.SqlServer.Management.Smo 命名空间

其他资源

使用集合

管理服务器