共用方式為


Server.NamedPipesEnabled 屬性

Gets the Boolean value that specifies whether Named Pipes provider is enabled for client-server connectivity on the instance of SQL Server.

命名空間:  Microsoft.SqlServer.Management.Smo
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property NamedPipesEnabled As Boolean 
    Get
'用途
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

屬性值

型別: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).

範例

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

請參閱

參考

Server 類別

Microsoft.SqlServer.Management.Smo 命名空間

Planning a SQL Server Installation

其他資源

管理伺服器