Propriedade do RDL Server.NamedPipesEnabled
Gets the Boolean value that specifies whether Named Pipes provider is enabled for client-server connectivity on the instance of SQL Server.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)
Sintaxe
'Declaração
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property NamedPipesEnabled As Boolean
Get
'Uso
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
Valor da propriedade
Tipo: System.Boolean
A Boolean value that specifies whether the Named Pipes provider is enabled on instance of SQL Server. If True, Named Pipes is enabled. Otherwise, False (default).
Exemplos
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
Consulte também
Referência
Namespace Microsoft.SqlServer.Management.Smo
Planning a SQL Server Installation