Proprietà NamedPipesEnabled
Ottiene il valore Boolean che specifica se il provider dei named pipe è abilitato per la connettività client-server nell'istanza di SQL Server.
Spazio dei nomi Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property NamedPipesEnabled As Boolean
Get
'Utilizzo
Dim instance As Server
Dim value As Boolean
value = instance.NamedPipesEnabled
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public bool NamedPipesEnabled { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property bool NamedPipesEnabled {
bool get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member NamedPipesEnabled : bool
function get NamedPipesEnabled () : boolean
Valore proprietà
Tipo: System. . :: . .Boolean
Valore Boolean che specifica se il provider dei named pipe è abilitato nell'istanza di SQL Server.
Se True, i named pipe sono abilitati. In caso contrario, False (impostazione predefinita).
Esempi
C#
Server srv = new Server("(local)");
Console.WriteLine("The Named Pipes provider is enabled: " + srv.NamedPipesEnabled.ToString()
PowerShell
$srv = new-Object Microsoft.SqlServer.Management.Smo.Server("(local)")
Write-Host "The Named Pipes provider is enabled:" $srv.NamedPipesEnabled
Vedere anche
Riferimento
Planning a SQL Server Installation