Partager via


Propriété Server.BrowserStartMode

Gets the start mode for the SQL Server Browser Service running on the instance of SQL Server.

Espace de noms :  Microsoft.SqlServer.Management.Smo
Assembly :  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Expensive Or SfcPropertyFlags.Standalone)> _
Public ReadOnly Property BrowserStartMode As ServiceStartMode 
    Get
'Utilisation
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

Valeur de propriété

Type : 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.

Notes

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

Exemples

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

Voir aussi

Référence

Server Classe

Espace de noms Microsoft.SqlServer.Management.Smo

Autres ressources

Utilisation de collections

Gestion des serveurs